* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'peridotpe-regular';
    src: url('fonts/peridotpe_regular_macroman/peridotpe-regular-webfont.woff2') format('woff2'),
    url('fonts/peridotpe_regular_macroman/peridotpe-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'peridotpe-regular', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

h1 {
    text-transform: uppercase;
    font-size: 54px;
    font-weight: 300;
    letter-spacing: 0.3rem;
    color: #777C7F;
    margin-bottom: 2rem;
}

.subtitle {
    max-width: 600px;
    font-size: 20px;
    line-height: 1.8;
    color: #777C7F;
    margin-bottom: 4rem;
}

.logo-circle {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4rem;
}

.status-text {
    font-size: 28px;
    color: #019891;
    font-weight: 500;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
   line-height: 1.5;
}

.info-text {
    max-width: 600px;
    font-size: 20px;
    line-height: 1.8;
    color: #777C7F;
}

footer {
    background-color: #019891;
    color: white;
    padding: 60px 2rem;
}

.footer-content {
    max-width: 1550px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 2rem;
    text-align: center;
}

.footer-section .desktop{
    display: block;
}

.footer-section .mobil{
    display: none;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #C3CFD5;
    letter-spacing: 0.15rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-section p, .footer-section a {
    color: white;
    font-size: 28px;
    text-decoration: none;
    font-weight: 300;
}

@media (max-width: 768px) {
    h1 {
        font-size: 34px;
        letter-spacing: 0.2rem;
    }

    .subtitle, .info-text {
        font-size: 14px;
    }

    .status-text {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section:nth-of-type(1){grid-area: 3}
    .footer-section:nth-of-type(2){grid-area: 2}

    .footer-section h3 {
        font-size: 12px;
    }

    .footer-section p, .footer-section a {
        font-size: 18px;
    }

    .footer-section .desktop{
        display: none;
    }

    .footer-section .mobil{
        display: block;
    }

    .logo-circle {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 400px) {
    br{display: none}
}