@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
:root{
    --main-bg-image:#2874f0;
}
*{
    margin: 0;
    padding: 0;
}
header{
    height: 8vh;
    background-color:var(--main-bg-image);
    font-family: 'Lato', sans-serif;
    position: sticky;
    top: 0;
    z-index: 10000;
}
nav ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height:7vh;
}
nav ul li{
    list-style: none;
    display: inline;
    padding:0 1.8vw;
}
nav ul li a{
    text-decoration: none;
    color: white;
}
nav ul li a:hover{
    font-weight: bolder;
}
footer{
    height: 8vh;
    background-color: var(--main-bg-image);
    color: white;
    font-family: 'Lato', sans-serif;
}
nav{
    display:flex;

}
.logo{
    display: flex;
    align-items: center;
    
}
.logo img{
    width: 3vw;
    height: 4vh;
    padding: 0.8vh 1.2vw 0 1.2vw;
}
.container_contact{
    min-height: calc(100vh - 8vh - 8vh);
    /* background-color: rgb(236, 232, 232); */
    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contactform{
    height: 70vh;
    width: 30%;
    background-color: white;
    border: none;
    border-radius: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.search2{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.search2 p{
    font-size: 1.5vw;
}
.search2 #name, #email{
    height: 5vh;
    width: 15vw;
    outline: none;
    border-radius: 1vw;
    border:1px solid black;
    padding-left: 1vw;
}
.search2 #Message{
    height: 20vh;
    width: 15vw;
    outline: none;
    border-radius: .5vw;
    border:1px solid black;
    padding-left: 1vw;
    padding-top: 1vh;
    resize: none;

}
.search2 .btn3{
    height: 5vh;
    width: 8.5vw;
    border: 2px solid #fc3d66;    
    background:white;
    outline: none;
    position: relative; 
    color: #fc3d66;
    cursor: pointer;
    border-radius: 0.5vw;
    font-size: 0.9vw;
    box-shadow: inset 0 0 0 #fc3d66;    
    transition: 0.3s ease-out;
}
.search2 .btn3:hover{
    box-shadow: inset 8.5vw 0 0 #fc3d66;
    color: white;
    border: 2px solid white;
}