@import url('https://fonts.googleapis.com/css2?family="Inter:wght@400;700&display=swap');

html {
    height: 100vh;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0 20%;
    background-image: url("./bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container{
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    padding: 0;
}

h1{
    color: white;
    text-align: center;
    margin-top: 0;
    font-size: 30px;
    font-weight: 700;
}

h2{
    font-size: 28px;
    color: #027BFF;
    font-style: italic;
}

header {
    text-align: center;
    margin: 0 50px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#studienorte {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 20px 0;
}

#studienorte li {
    font-weight: 700;
    font-size: 20px;
}

#studienorte li a{
    color: white;
}

#studienorte li:nth-child(1)::after ,
#studienorte li:nth-child(2)::after {
    content: "|";
    margin-left: 30px;
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    #studienorte {
        gap: 5px;
    }

    #studienorte li:nth-child(1)::after ,
    #studienorte li:nth-child(2)::after {
        content: "|";
        margin-left: 10px;
        color: white;
    }
}    