body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: itc-avant-garde-gothic-pro, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    overflow-x: hidden;
}

.container {
    position: relative;
    height: 100%;
    overflow-x: hidden;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid #F1FF6E;
    box-sizing: border-box;
    object-fit: cover;
    overflow: hidden;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.text-container {
    position: absolute;
    bottom: 45px;
    width: 100%;
    text-align: center;
    color: #F1FF6E;
    padding: 0 40px;
    box-sizing: border-box;
    text-shadow: 4px 4px 8px #864570;
}

.text-container a {
    color: #F1FF6E;
    text-decoration: none;
}

.text-container a:hover {
    color: #FFFFFF;
}

.text-container a:visited {
    color: #F1FF6E;
}

.upper-line {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 18px;
}

.lower-line {
    font-size: 16px;
    font-weight: 300;
}

.legal {
/*    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    width: 100%;
    overflow-y: scroll;
}

.legal-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 700px;
    height: 100%;
    padding: 0 50px;
    /*overflow-y: scroll;*/
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

@media (max-width: 768px) {

    .text-container {
        bottom: 35px;
    }

    .logo {
        width: 180%;
    }

    .upper-line {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .lower-line {
        font-size: 20px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}
