/* Reset some default browser styles */
body, h1, p, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #222222;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.maintenance-icon {
    width: 50px; 
    margin-bottom: 25px;
}

.container {
    text-align: center;
    background-color: #242424;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 30px;
    
}
p.message{
    animation: pulsate 1.5s infinite;
}

.btn {
    transform: scale(1.2);
    display: inline-block;
    background-color: rgb(255, 255, 255);
    color: #000000;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.7s ease, transform 0.5s;
}

.btn:hover {
    background-color: crimson;
    color: #ffffff;
    transform: translateY(-4px) scale(1.2);
}

.btn:active {
    transform: scale(1.5);
    box-shadow: 0 5px 15px rgba(255, 30, 0, 0.4);
  }

.logo {
    width: 150px; /* Adjust the size of the logo as needed */
    margin-top: 30px;
    margin-left: -22px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background-color: rgb(25, 25, 25);
    font-weight: 300;
}

.copyright i {
    color: crimson;
}

.copyright p{
    margin-top: 25px;
}

.social-icons{
    margin-top: 30px;   
}

.social-icons a{
    text-decoration: none;
    font-size: 20px;
    margin-right: 15px;
    color: rgb(99, 98, 98);
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: crimson;
    transform: translateY(-5px);
}

/* Pulsate animation keyframes */
@keyframes pulsate {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
