body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #002642;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 20px;
}

.content {
    max-width: 600px;
    padding: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    width: 350px;
    height: auto;
    margin-bottom: 0;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
    color: #24b8c2;
}

h2 {
    font-size: 1.5em;
    font-weight: 400;
    margin-top: -10px;
    margin-bottom: 1em;
}

p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.6;
}

.under-construction {
    font-weight: 500;
    color: #24b8c2;
    font-size: 1.2em;
}

.contact {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-item .material-icons {
    margin-right: 10px;
    color: #24b8c2;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1em;
}

.contact-item a:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    .content {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.2em;
    }

    .contact {
        flex-direction: column;
        gap: 15px;
    }
}
