.main-container {
    background: #ff0000 url(../image/background.avif) top center repeat-y;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

@font-face {
    font-family: organical;
    src: url(/font/organical.ttf);
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
}

.footer {
    background-color: rgb(136, 205, 228);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: space-evenly;
}

.menu div {
    display: flex;
    width: 100%;
}

.menu div a {
    text-align: center;
    color: black;
    width: 100%;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    background-color: #5d739a;
    text-decoration: none;
    padding: 10px;
}

.menu div a:hover {
    transition: all ease 0.5s;
    color: white;
    background-color: #54688b;
}

#after {
    background-color: #6996af43;
    color: black;
}

#after:hover {
    transition: all ease 0.5s;
    background-color: #54688b;
    color: #fff;
}

.homeinfo {
    font-size: 20px;
    margin: auto;
}


/* about page */

p {
    font-size: 150%;


}

.infocontainer-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background-color: #ffffffb8;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 100px;
    padding: 30px;
}

.link-footer a {
    font-size: 30px;
    color: black;
    text-decoration: none;
  }
  
  .footer .contact-info .rotate-image {
    width: 80px;
    height: auto;
  }
  .link-footer {
    margin-left: 90px;
    transform: translateY(-170%);
  }
  
  .footer .contact-info:hover .rotate-image {
      transition: all ease 1.5s;
      transform: rotate(360deg);
      
  }
  
  @media screen and (max-width: 690px) {
      .menu{
          flex-wrap: wrap;
      }
  
      .menu div a{
          margin: 2px;
          padding: 10px;
      }
  
      .loader{
          font-size: 7px;
          
      }
  
      .infocontainer{
          margin:10px;
          
      }
    
  
  }

  @media screen and (max-width: 690px) {
    .menu {
        flex-wrap: wrap;
    }

    .menu div {
        width: 100%;
    }

    .menu div a {
        margin: 5px 0; 
        padding: 10px;
        font-size: 18px; 
    }

    .infocontainer-about {
        margin: 20px; 
        padding: 15px; 
    }

    .footer .link-footer a {
        font-size: 24px; 
    }

    .footer .contact-info .rotate-image {
        width: 60px; 
    }

    .link-footer {
        margin-left: 20px; 
        transform: translateY(-120%); 
    }
}