body{
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgba(255, 231, 231, 0.144);
}

nav{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    background-color: white;
    align-items: center;
    height: 60px;
    box-shadow: 2px solid black;
}

.logo p{
    font-size: 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 500;
}

.logof p{
    font-size: 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 500;
}

.close {
    visibility: hidden;
}
#icon.switch .close{
    visibility: visible;
}
#icon.switch .open{
    visibility: hidden;
}


.menu ul{
    display:flex;
    justify-content: space-between;
}

.menu a{
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-duration: 1s;
}

.menu a:hover{
    font-weight: 600;
    color: rgb(196, 20, 20);
}

.menu li{
    list-style: none;
    padding-left: 15px;
}

.search{
    width: 100%;
    text-align: center;
    margin-top: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search input{
    height: 40px;
    border: none;
    border-radius: 10px;
    background-color: white;
}

.social li{
    list-style: none;
}

.social a{
    font-weight: 500;
    transition: .5s ease-in-out;
}

.social a:hover{
    color: black;
}

.butt{
    height: 40px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-weight: bold;
    background-color: white;
}

.butt:hover{
    transition: ease-in-out .5s;
    color: white;
    background-color: #B45309;
}

.box{
    border-radius: 10px;
    text-align: center;
}

.box:hover{
    scale: 1.1;
    transition: ease-in-out .5s;
    background-color: white;
}

.box:hover p{
    transition: ease-in-out .5s;
    color: black;
}

.hero{
    background-image: url(https://images.unsplash.com/photo-1669148935174-66f9bb9a3956?q=80&w=913&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container{
    margin-left: 10px;
}


.container:hover{
    scale: 1.05;
    transition: ease-in-out .5s;
}

.register{
    padding: 10px;
    border-radius: 10px;
    color: white;
    transition: ease-in-out 0.5s;
}

.register:hover{
    background-color: white;
    color: black;
}


.buton{
    position: absolute;
    top: 45%;
    margin: 0 20px;
    width: max-content;
    justify-content: space-between;
    display: inline-flex;
}

.btn1, .btn2{
    background-color: #B45309;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    border-radius: 100%;
    border: none ;
    cursor: pointer;
}

.btn1:hover, .btn2:hover{
    transition: ease 0.5s;
    background-color: white;
    color: #B45309;
}
