@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    font-size: 10px;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}

h1 {
    font-size: 2.1rem;
}
h3 {
    font-size: 1.9rem;
}
p {
    font-size: 1.7rem;
}
header {
    width: 100%;
    height: 5rem;
    background-color: aliceblue;
    position: fixed;
    top: 0;
    z-index: 333;
}

.container {
    width: 96%;
    max-width: 117rem;
    margin: 0 auto;
}

.navbar {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.navbar h1 {
    text-transform: uppercase;
    color: #5b5963;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
}
.navbar ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar ul a{
    font-size: 1.2rem;
    padding: 1.5rem;
    text-transform: uppercase;
    color: #5b5963;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}
.navbar ul a:hover{
    color: white;
    background-color: #fd735a;
}
.hero {
    max-width: 114rem;
    height: 40rem;
    background: url(../img/kitchen.jpg) 
    no-repeat center center / cover;
    margin: 5rem auto;
}

main {
    width: 100%;
    max-width: 80rem;
    background-color: white;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 1.5rem;
    margin-top: -15rem;
}

main h2{
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
}
main .profile-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
}
main .profile-container .profile{
    display: flex;
    justify-content: center;
    align-items: center;
}
main .profile-container .profile .img-container{
    width: 6rem;
    height: 6rem;
    background: url(../img/nathan.jpg)no-repeat
     center center / cover;
    border-radius: 20rem; 
}
main .profile-container .profile .text{
    margin: 0.3rem;
    color: #5b5963;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
}
.profile .text h3{
    text-transform: uppercase;
}
main content p{
    color: #5b5963;
    margin: 1rem 0;
}

main content h4{
    font-size: 1.4rem;
    font-weight: 600;
    color: #5b5963;
    margin: 2rem 0;
}
main .content .content-img-container{
    width: 100%;
    height: 35rem;
    background: url(../img/cooking.jpg)
    no-repeat center center / cover;
}

footer {
    background-color: #222;
    padding: 3rem 0;
    align-items: center;
}
footer {
    display: block;
    clear: both;
    background-color: #222;
    padding: 2rem 0;
    text-align: center;
}
footer p{
    color: antiquewhite;
}
