* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Arial;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100dvh;
    justify-content: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-attachment: fixed;
    background-image: linear-gradient(135deg, #1a5276, #3498db);
}

.logo {
    margin: 20px auto;
}

.logo img {
    max-width: 300px;
    height: auto;
}

main {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.container {
    margin: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.container p{
    color: #fff;
    text-align: center;
    font-size: 1.2em;
}

h1 {
    font-size: 2.5em;
    color: #fff;
    text-align: center;
}

.coming-soon {
    font-size: 1.8em;
    color: #f1c40f;
    font-weight: 700;
    text-align: center;
}

.construction-icon {
    font-size: 4em;
    color: #f1c40f;
    animation: bounce 2s infinite;
    text-align: center;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 90%;
        margin: auto;
    }
}

@media screen and (max-width: 480px) {
    .container {
        width: 80%;
        margin: auto;
    }
}
