*{
    padding: 0;
    margin:0;
    box-sizing:border-box;
}
.log{
    text-decoration: none;
    color:white;
}

header{
    width:100%;
    height:85px;
    font-family: sans-serif;
    background-color:#2F4858 ;
    box-shadow: 0px 10px rgba(205,92,92);
}
nav{
    width:100%;
    height: 100px;
    color:rgb(255, 255, 255);
    display:flex;
    justify-content: space-around;
    align-items: center;
    font-family:sans-serif;
    
}
.logo{
    font-size:2em;
    letter-spacing: 2px;
    font-weight: 800;
}
.menu  a{
    text-decoration: none;
    color:rgb(255, 255, 255);
    padding:10px 20px;
    font-weight: 500;
    font-size: 20px;
    position: relative;
    
}
.menu a::before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:0%;
    height:100%;
    border-bottom: 2px solid indianred;
    transition: 0.4s linear;

}
.menu a:hover:before{
    width:90%
}
.register a{
    text-decoration: none;
    color:white;
    padding:10px 20px;
    font-size: 20px;
    background:indianred;
    border-radius:8px;
    transition: 0.4s;

}
.register a:hover{
    background: transparent;
    border:1px solid indianred;
}

