@import url('https://fonts.cdnfonts.com/css/dt-getai-grotesk-display');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DT Getai Grotesk Display', sans-serif;
    color: white;
    overflow: hidden;

}

body {
    height: 100vh;
    width: 100vw;
    background: #000;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    padding: 20px 0;
}

header a {
    width: 143px;
    height: 44px;
    cursor: pointer;

}

main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

main img {
    position: absolute;
    width: 100vw;
    height: 1000vh;
}

.maintainance-section {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 0;
    bottom: 0;
}

.maintainance-section h1 {
    font-weight: 900;
    font-size: 56px;
    line-height: 64px;
    text-align: center;
    margin-bottom: 12px;
}

.maintainance-section p {
    font-family: 'DM Sans', sans-serif;
    color: #cccccc;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -1.5%;
    /* text-align: center; */
    max-width: 379px;
}

@media (max-width:700px) {

    .maintainance-section h1 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 16px;
    }

    .maintainance-section p {
        font-size: 16px;
    }
}