*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kalam', cursive;
/*    background-color: #ffffff;*/
}

#adsenseAds{
    padding-left: 35px;
    text-align: center;
    background: #ffffff;
}

/* Video responsive setup from css tricks */
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* --------------------------------------- */

.randomButton{
    font-weight: 400;
    font-size: 30px;
}
.card{
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 22px 8px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 22px 8px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 22px 8px rgba(0,0,0,0.2);
    margin: 5px;
    padding: 20px;
}

@media(max-width: 600px){
    .card{
        padding: 10px;
    }
    .saveAndLoadRecipe{
        flex-direction: column;
    }
    .saveAndLoadRecipe{
        height: 120px;
    }
    .imgIngredients{
        flex-direction: column;
    }
}


.container{
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
}
/* Buttons ------ */
.button{
    -webkit-box-shadow: 0px 0px 22px 8px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 22px 8px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 22px 8px rgba(0,0,0,0.2);
    border-radius: 5px;
    height: 50px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #34495e;
    color: white;
}
.button:hover{
    background-color: #2c3e50;
}

.saveAndLoadRecipe{
    display: flex;
}

.save{
    flex:1;
    background-color: #3498db;
}
.save:hover{
    background-color: #2980b9;
}
.load{
    flex: 1;
    background-color: #9b59b6;
}
.load:hover{
    background-color: #8e44ad;
}

/* Img and Ingrediets */

.imgIngredients{
    display: flex;
}

.img{
    flex:1;
    text-align: center;
}
.ingredients{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h3{
    margin-bottom: 10px;
}

/* Description  */
.description{
    margin-bottom: 10px;
}

.searchRecipe{
    width: 98%;
    height: 30px;
    padding: 10px;
    margin-bottom: 10px;
}

.delete{
    background-color: #e74c3c;
}
.delete:hover{
    background-color: #c0392b;
}