*{
    margin: 0;
}

.footer{
    width: 100vw;
    height: 4vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--main_color_03);
    font-family: var(--main_font);
    color: var(--main_color_01);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    letter-spacing: 1.1px;
    text-transform: capitalize;
    text-align: center;

}


/* Mobile Devices */
@media only screen and (max-width: 480px) {
  .footer{
   
    font-size: 9px;
    letter-spacing: 1.1px;
    text-transform: capitalize;
    text-align: center;

}

}
  
  /* Tablets and Large Phones */
@media only screen and (min-width: 481px) and (max-width: 768px) {

}
  /* Small Laptops and Tablets */
@media only screen and (min-width: 769px) and (max-width: 1024px) {

}
  /* Desktops and Large Laptops */
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
   
}
  
  /* Widescreen Monitors */
@media only screen and (min-width: 1201px) {
    
}