*{
    margin: 0;
    font-family: var(--main_font);
    color: var(--main_color_01);
}
.top{
    width: 100vw;
    height: 6vh;
    background-color: var(--main_color_03);
    display: flex;
    justify-content: center;
}

.top div{
    display: flex;
    align-items: center;
    justify-content: center;
}

.top img{
    width: 50px;
    margin-right: 20px;
}

.footer{
    width: 100vw;
    height: 5vh;
    position: absolute;
    bottom: 0;
    left: 0;
}



/* Mobile Devices */
@media only screen and (max-width: 480px) {

    .top{
        font-size: x-small;
    }
   
    
    .top img{
        width: 30px;
    }
 
  }
  
  /* Tablets and Large Phones */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .top{
        font-size: small;
    }
   
    
    .top img{
        width: 30px;
    }
    
  }
  
  /* Small Laptops and Tablets */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .top{
        font-size: small;
    }
   
    
    .top img{
        width: 30px;
    }
  }
  
  /* Desktops and Large Laptops */
  @media only screen and (min-width: 1025px) and (max-width: 1200px) {
   
  }
  
  /* Widescreen Monitors */
  @media only screen and (min-width: 1201px) {
    
  }