@font-face {
    font-family: "ITC Avant Garde Gothic Pro";
    src: url("/assets/fonts/ITCAvantGardeProBook.otf") format("otf");
  }
body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    height: 100vh;
    font-family: 'ITC Avant Garde Gothic Pro', sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(78,78,78,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(78,78,78,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(78,78,78,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#4e4e4e",GradientType=1);
    background-size: cover;
    background-position: center;
    z-index: -1; /* To place it behind other content */
  }

.main-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    padding: 40px;
}

.logo svg{
    width: 200px;
}

.maintanence-message{
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 1440px;
}

.maintanence-message h1{
    font-size: 70px;
    text-align: center;
    color: #5C5C5C;
    margin: 0;
    font-weight: 500;
}

.maintanence-message p{
    font-size: 32px;
    text-align: center;
    color: #414141;
    margin: 0;
    padding: 10px;
}


.social-icons-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;    
}

.social-icons-container p{
    font-size: 32px;
    margin:  0 0 20px 0;
}

.social-icons{
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    gap: 20px;  
}

.footer-section{
    display: flex;
    justify-content: center;
}

.footer-section p{
    font-size: 22px;
    color: #E4E4E4;
    text-align: center;
    padding: 20px 8px 30px 8px;

}

@media(max-width:1024px){
    .maintanence-message h1{
        font-size: 50px;
        padding: 10px;
    }
    .maintanence-message p{
        font-size: 24px;
        padding: 20px;  
    }
}

@media(max-width:800px){
    .logo svg{
        width: 150px;
    }
    .maintanence-message h1{
        font-size: 32px;
    }
    .maintanence-message p{
        font-size: 24px;
    }
}

@media(max-width:600px){
   
    .logo svg{
        width: 150px;
    }
    .maintanence-message h1{
        font-size: 32px;
    }
    .maintanence-message p,.social-icons-container p{
        font-size: 24px;
    }  
    .social-icons svg{
        height: 35px;
    }
    .footer-section p{
        font-size: 18px;
    }

}

@media(max-width:480px){
    .main-container{
        padding: 20px 0 20px 0;
    }
    .logo svg{
        width: 100px;
    }
    .maintanence-message h1{
        font-size: 24px;
    }
    .maintanence-message p,.social-icons-container p{
        font-size: 20px;
    }  
    .social-icons svg{
        height: 35px;
    }
    .footer-section p{
        font-size: 18px;
    }
}

