* {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.mobile {
    display: none;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    color: #251DC4;
    font-family: 'Helvetica';
    font-size: 1.2vw;
    line-height: 140%;
    text-transform: uppercase;
    overflow-x: hidden;
    scroll-behavior: smooth;
    text-align: center;
}

a {
    color: #251DC4;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

p {
    margin-bottom: 1.6vw;
}


.main {
    height: max-content;
    transform: translateY(calc(50vh - 60%));
}

.logo {
    margin-bottom: 4.6vw;
    height: 4vw;
    background-image: url('logo.svg');
}


.footer {
    position: absolute;
    margin-bottom: 3vw;
    bottom: 0;
    left: 0;
    transform: translateX(calc(50vw - 50%));
}


@media only screen and (max-width: 1000px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    body {
        padding: 0 16vw;
        font-size: 4vw;
    }

    p {
        margin-bottom: 8vw;
    }

    .logo {
        margin-bottom: 10vw;
        height: 10vw;
    }

    .footer {
        margin-bottom: 8vw;
    }
}
