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: hidden;
}

.header {
    text-align: center;
    /*padding: 20px;*/
    background-color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.content {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    text-align: center;
}

.bright {
    color: #FFFFFF;
    text-shadow: 4px 4px 8px #444444;
}

.links {
    text-align: center;
    /*padding: 20px;*/
    width: 100%;
    display: flex;
    justify-content: center;
}

.link {
    color: #646363;
    font-size: 26px;
    background-color: #FFFFFF;
    padding: 30px;
    margin: 50px;
    width: 200px;
    border-radius: 6px;
}

.container {
    position: relative;
    height: 100%;
    overflow: 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 {
    max-width: 180px;
    margin: 20px;
}

.text-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    /*padding: 0 40px;*/
    box-sizing: border-box;
    text-shadow: 4px 4px 8px #444444;
}

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

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

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

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

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

a {
    text-decoration: none;
}

@media (max-width: 768px) {

    .links {
        flex-direction: column;
        align-items: center;
    }
    
    .link {
        font-size: 18px;
        margin: 10px;
        padding: 10px;
    }
    
    .content{
        top: 140px;
    } 

    .text-container {
        bottom: 35px;
    }

    .logo {
        max-width: 100px;
    }

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

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

}
