html{
    overflow-y: scroll;
}
.menu{
    width: 100%;
    height: 60px;
    background-color: rgba(0,0,0,0.5);
    color: white;  
    font-family: 'Oswald', sans-serif;
    display: grid;
    grid-template-columns: 32% 36% 32%;
    position: absolute;
    z-index: 10;
    grid-template-rows: 50% 50%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}


span{
    width:100%;
    height: 0px;
    display:inline-block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;   
  }

.logo{
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-left: 40px;
    margin-top: 15px;
    transition-duration: 40ms;
    height: 24px;
    text-decoration: none;
    position: static;
    color:white;
}
.logoimg{
    position: static;
    width: 40px;
    height: 40px;
    margin: 10px;
    margin-left: 30px;
}
.buttoncontainer{
    text-align: justify;
    grid-template-columns: 20% 20% 20% 20% 20%;
    display: grid;
    align-items: center;
    justify-items: center;
}
.dropdown-content a {
    float: none;
    color: white;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: 0.3s;
}
.dropdown-content a:hover{
    color: #ffdd48;
}
.dropbtn {
    height: 56px;
    font-size: 17px; 
    position: relative;
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font-family: 'Oswald', sans-serif;
    transition: 0.3s;
}
.dropbtn:hover{
    color: #ffdd48;
}
.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    left: -10px;
    padding: 10px;
    transition: 0.3s;
    background-color: rgba(0,0,0,0.5);
    top: 54px;
    border-bottom-left-radius: 15px;
}
.dropdown{
    top: 6px;
    position: relative;
    font-size: 17px;
    transition-duration: 0.3s;
    text-decoration: none;
    color: inherit;
    z-index: 20;
    transition: 0.3s;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.menubtn{
    top: 3px;
    position: relative;
    font-size: 17px;
    transition-duration: 0.3s;
    height: 20px;
    text-decoration: none;
    color: inherit;
    z-index: 20;
}
.menubtn:hover{
    color: #ffdd48;
    transform: scale(1.02);
}
.menu_button
{ 
 display:none;
 position:absolute;
 width: 50px;
 height: 50px;
 right: 10px;
 top: 0;
 flex-direction: column;
 flex-wrap: nowrap;
 align-items: center;
 justify-content: center;
 transition-duration: 0.5s;
 z-index: 12;
}
.menu_button span
{
  position: relative;
  width: 30px;
  height: 3px;
  background-color: #9b9b9b;
  margin: 3px;
  border-radius: 5px;
}
   

@media (min-width:425px) and (max-width:641px)
{
    .buttoncontainer
    {
        width: 100%;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.5);
        text-align: center;
        border-top:5px rgba(105, 105, 105, 0.623) solid;
    }
    .menu
    {
        display:block;
        justify-content: center;
        left: 0;
        top: 0;
        width: 100%;
        min-height: 50px;
    }
    .menubtn    
    {
        margin: 15px 15px;
    }
    .dropdown-content
    {
       top: 29px;
    }
    .menu_button
    {
        display:flex;
    }
    .social_networks
    {

        position: absolute;
        right: 10px;
        top: 0px;
        width: 150px;
        height: 50px;
    }
   
}
@media (max-width:424px)
{
    .logo
    {
    width: 100%;
    }
    .buttoncontainer
    {
        width: 100%;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.5);
        text-align: center;
        border-top:5px rgba(151, 151, 151, 0.979) solid;
    }
    .menu
    {
        display:block;
        justify-content: center;
        left: 0;
        top: 0;
        width: 100%;
        min-height: 50px;
    }
    .menubtn    
    {
        margin: 10px 10px;
    }
    .dropdown-content
    {
       top: 29px;
    }
    .menu_button
    {
      display: flex;
    }
    .social_networks
    {

        position: absolute;
        right: 5px;
        top: 0px;
        width: 150px;
        height: 50px;
    }
   
}