@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
.btn{
    padding: 12px 16px;
    border: none;
    outline: none;
    border-radius: 25px;
}
section{
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('images/img1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 32px 80px;
}
header{
    height: 60px;
    width: 100%;
    background-color: rgba(255,255,255,.2);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}
a{
    color: white;
    text-decoration: none;
}
h3{
    font-size: 24px;
    color: white;
    font-weight: 800;
}
nav ul{
    display: flex;
    gap: 32px;
}
nav ul li a{
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: .5s;
}
nav ul li a:hover{
    color: #9c0001;
}
header .nav{
    background-color: #9c0001;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
main{
    position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
    
    top: 350px;
    
}
h1{
    position: absolute;
    color: #ffffff;
    font-size: 280px;
    font-family: "Anton", sans-serif;
    -webkit-text-stroke: 1px #ffffff;
    
}
h1.front{
    color: transparent;
    z-index: 100;
}
h1.back{
    z-index: 1;
}
img{
    position: absolute;
    z-index: 5;
    width: 500px;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
form{
    background: #fff;
    width: 600px;
    height: 55px;
    display: flex;
    border-radius: 40px;
}
form input{
    flex: 1;
    border: none;
    outline: none;
}

form button{
    background: red;
    padding: 10px 50px;
    border: none;
    outline: none;
    color:#fff;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 40px;
}
form .fa-search{
     align-self: center;
     padding: 10px 20px;
     color: #777;
}
 h2{
    font-size: 30px;
    margin-top: 50px;
    text-align: center;
    justify-content: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,.5);
}
p{
    font-size: 18px;
    color: #ffffff;
    margin-top: 40px;
    text-align: center;
}


.right .rightbt{
    background-color: #9c0001;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    margin-left: 600px;
    margin-top: 110px;
}