*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo img{
    width: 100%;
    border: 3px solid rgb(240, 8, 8);
    border-radius: 50px;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    background-color: rgb(206, 202, 202);
}
.nav-list{
    width: 65%;
    display: flex;
    align-items: center;
}

.nav-list li{
    list-style: none;
    padding: 50px 25px;
    font-size: 25px;
    font-style: calc();
    margin: auto;

}

.nav-list li a{
    text-decoration: none;
    color: black;
}

.nav-list li a:hover{
    color: red;
}

.rightNav{
    width: 20%;
    text-align: center;
}

.btn{
    padding: 8px;
    margin: 7px;
    border: 3px solid black;
    border-radius: 20px;
    font-size: 20px;
    font-style: italic;
    cursor: pointer;
}

.btn:hover{
    color: red;
}

.container{
    width: 100%;
    height: 100vh;
    background: #5d688b;
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    background: white;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
}

form h3{
    color: #555;
    font-weight: 800;
    margin-bottom: 20px;
}

form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;
}

form button{
    padding: 15px;
    background: #ff5361;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
}
.contact-me{
    width: 100%;
    height: 290px;
    background: grey;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.contact-me p{
    color: black;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-me .button-two{
    background-color: #f9004d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 9px 22px;
    border-radius: 30px;
    transition: .4s;
}

.contact-me .button-two:hover{
    background-color: transparent;
    border: 2px solid #f9004d;
    cursor: pointer;
}

footer{
    position: relative;
    width: 100%;
    height: 400px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p:nth-child(1){
    font-size: 50px;
    color: black;
    margin-bottom: 20px;
    font-weight: bold;
}

footer p:nth-child(2){
    color: black;
    font-size: 17px;
    width: 500px;
    text-align: center;
    line-height: 26px;
}

.social{
    display: flex;
}

.social a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9004d;
    border-radius: 50%;
    margin: 22px 10px;
    color: aliceblue;
    text-decoration: none;
    font-size: 20px;
}

.social a:hover{
    transform: scale(1.3);
    transition: .3s;
}

.end{
    position: absolute;
    color: red;
    bottom: 35px;
    font-size: 20px;
}
