*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
a{
    text-decoration: none;
    color: white;
}
body{
    background-color:lightgray;
}
header{
    height: 60px;
    width: 100%;
    background: #222121;
    color: white;
    display: flex;
    align-items: center;
}
.container{
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav ul li{
    
    display: inline;
    margin-right: 20px;
    font-weight: 550;
}
.title{
    font-size: 24px;
}
.welcome{
    background: url(kann.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height:600px;
    color: white;
    padding: 100px;
    margin-bottom: 200px;
}
.welcome h2{
    font-size: 36px;
    margin-top: 10%;
}
.welcome p{
    font-size: 30px;
    margin-top: 4%; 
    margin-left: 5%;   
}
.recipes h1{
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}
.total{
    margin: 0 auto;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    column-gap: 10px;
}
.menu{
    background: white;
    margin: 30px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.menu img{
    width: 100%;
    height: 200px;
}
.menu img:hover{
    transition: 0.5s;
    transform: scale(1.5);
}
.menu h2{
    font-size: 22px;
    padding: 20px;
}
.menu p{
    font-size: 18px;
    padding: 20px;
}
.menu a{
    display: block;
    text-align: center;
    background: #333;
    color: white;
    padding: 15px;
    cursor: pointer;
}
footer{
    background: #333;
    padding: 20px 0;
    color: white;
    text-align: center;
    margin-top: 3%;
}
 .about h3{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 25px;    
    text-align: center;
    margin-top: 5%;
 }
 .about h2{
    padding-top: 8%;
    padding-left: 5%;
    font-size: 25px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.about p{
    text-align: center;
    padding: 10px;
    padding-left: 10%;
    margin-right: 10%;
    font-size: 18px;
           
}
.about{
    border: 1px solid;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 2%;
    background-color: lightslategray;
}
.about img{
    margin-left: 30%;
}
.name{
    text-align: center;
    border: 1px solid;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 5%;
    padding: 2%;
    background-color: lightgray;      
}
.name input{
    padding: 2%;
    margin-top: 8%;
    margin-left: 5%;
    width: 400px;
    height: 2%;
}
.name button{
    margin-top: 3%;
    padding: 1%;
    width: 200px;
    height: 3%;
}
.follow h1{
    text-align: center;
    margin-top: 1%;
}