* {
    margin: 0;
    padding: 0;
    font-family: Cambria, serif;
}

html, body {
    width: 100%;
    height: 100%;
    background-image: url(./Hintergrund.jpg);
    background-size: cover;
    background-position-y: center;
}

.header {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 10%;
}

.header h1 {
    font-size: 48pt;
}

.header h2 {
    font-size: 24pt;
}

.content {
    height: 75%;
    overflow-y: scroll;
    margin: 0 auto;

    /* Hide scrollbar for IE, Edge and Firefox */

    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.content::-webkit-scrollbar {
    display: none;
}

.artist, .submit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 5% auto;
    width: 60%;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    border-radius: 50px;
    padding: 25px 0;
}

.artist-information {
    display: flex;
    flex-direction: column;
}

.submit input {
    font-size: 24pt;
    width: 80%;
    margin: 0 auto;
}

.submit label {
    font-size: 24pt;
    color: white;
    margin: 0 auto 5% auto;
    text-align: center;
}

.submit button {
    width: 60%;
    border-radius: 50px;
    margin: 5% auto 0 auto;
    font-size: 24pt;
}

.artist span {
    text-align: center;
    font-size: 24pt;
}

.artist-pic {
    width: 80%;
    height: 80%;
    margin: 0 auto;
}

.social {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0 5%;
    margin-bottom: 5%;
    text-decoration: none;
}

.social img {
    margin-right: 5%;
}

.tag {
    text-decoration: none;
    font-size: 24pt;
    color: white;
    margin: auto 0;
}

.artist button {
    width: 60%;
    border-radius: 50px;
    margin: 0 auto;
    font-size: 24pt;
}

.user-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer {
    height: 15%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    justify-content: space-around;
}

.utilities, .links {
    display: flex;
    flex-direction: column;
}

.links a {
    text-decoration: none;
    color: white;
}

.utilities {
    justify-content: space-between;
    height: 100%;
    line-height: 2em;
    font-size: 24pt;
}

.information {
    display: flex;
    padding: 1% 0;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    line-height: 1.25em;
    font-size: 24pt;
}

.address, .openings {
    display: none;
}

@media (min-width: 1100px) {
    .header h1 {
        font-size: 24pt;
    }

    .header h2 {
        font-size: 16pt;
    }

    .content {
        height: 80%;
    }

    .landscape-group {
        display: flex;
        justify-content: space-evenly;
    }

    .artist {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 2% 0 0 0;
        width: 22%;
        padding: 10px 5px;
    }

    .artist-information {
        margin-top: 3%;
        flex-direction: row;
    }

    .artist span {
        font-size: 16pt;
    }

    .artist-pic {
        width: 30%;
        margin: 0;
    }

    .social {
        width: 100%;
        display: flex;
        flex-direction: row;
        padding: 0 5%;
        margin-bottom: 5%;
    }

    .social img {
        width: 10%;
    }

    .tag {
        font-size: 14pt;
    }

    .artist button {
        font-size: 16pt;
    }

    .submit {
        flex-direction: row;
        justify-content: space-evenly;
        width: 96%;
        margin: 2% auto;
    }

    .user-information {
        width: 30%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .user-information label {
        display: none;
    }

    .submit input {
        font-size: 16pt;
        width: 70%;
        margin-bottom: 1%;
        text-align: center;
    }

    .submit label {
        font-size: 16pt;
        margin: auto 0;
    }

    .submit button {
        width: 50%;
        margin: 1% auto 0 auto;
        font-size: 16pt;
    }

    .footer {
        height: 10%;
        justify-content: space-around;
    }

    .utilities {
        justify-content: space-evenly;
        line-height: 1.5em;
        font-size: 12pt;
    }

    .information {
        display: none;
    }

    .address, .openings {
        text-align: center;
        display: flex;
        flex-direction: column;
        margin: auto 0;
    }
}