.header{
    background-color: white;
    height:85px;
    display:flex;
    border-bottom: 1px solid black;
    margin-bottom: 30px;
    box-shadow: 1px 1px 2px 2px gray;
}
   
.navbar{
    display: flex;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    margin-left: 120px;

    
}
.navbar a{
    transition: .05s ease-in-out;
}

.navbar a:hover,
.navbar a.active{
    color:  #ee2737;
    /* transition: 0.3s ease-in;
    transform: scale(1.1); */
    /* font-size: 21px; */
    transform: scale(1.1);

}

.logo{
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size:  25px;
    text-decoration: none;
    color:black;
    margin-left: 330px;
    /* margin-top: 15px; */
    margin-right: 40px;
    font-family: "Poppins", sans-serif;
}
.navbar-opt{
    color:black;
    /* margin-top: 20px; */

    font-size: 18px;
    text-decoration: none;
    margin-left: 40px;
}
.sign-btn{
    height: 30px;
    width:90px;
    background-color: #ee2737;
    color:white;
    text-decoration: none;
    margin-top: 22px;
    margin-left: 150px;
    padding-top: 10px;
    font-weight: bold;
    border-radius: 25px;
    padding-left:50px;
}
.navbar-opt:hover{
    color:#ee2737;
}
.sign-btn:hover{
    background-color: black;
}
@media screen and (max-width:600px){
    .header{

        height: 60px;
        margin-right: 5px;   
    } 
    .navbar{
        display:flexbox; 
    }
    .navbar-opt{
        font-size: 10px;
        margin-left: 10px;
    }
    .logo{
        font-weight: bold;
        font-size:  18px;
        text-decoration: none;
        color:black;
        margin-left: 15px;
        margin-top: 15px;
        margin-right: 4px;
    }
    .navbar-opt:hover{
        color:#ee2737;
    }
    .sign-btn:hover{
        background-color: black;
    }
    .sign-btn{
        font-size: 10px;
        height: 15px;
        width: 60px;
        padding-left: 10px;
        padding-top: 5px;
        margin-left: 7px;
    }   
}
@media screen and (min-width:600px) and (max-width:800px){
    .header{

        height: 60px;
        margin-right: 5px;   
    } 
    .navbar{
        display:flexbox; 
    }
    .navbar-opt{
        font-size: 15px;
        margin-left: 25px;
    }
    .logo{
        font-weight: bold;
        font-size:  22px;
        text-decoration: none;
        color:black;
        margin-left: 25px;
        margin-top: 15px;
        margin-right: 4px;
    }
    .navbar-opt:hover{
        color:#ee2737;
    }
    .sign-btn:hover{
        background-color: black;
    }
    .sign-btn{
        font-size: 10px;
        height: 22px;
        width: 50px;
        padding-left: 30px;
        padding-top: 7px;
        margin-left: 50px;
    }   
}

