body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #2F2F2F;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

nav {
    position: absolute;
    top: 10px;
    left: 10px;
}

#header {
    margin-top: 0px;
    width: 100%;
    height: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #444;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 5px;
}

.dropdown-content a:hover {
    background-color: #555;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#loader {
    text-align: center;
}

.pin {
    font-size: 64px;
    display: inline-block;
    animation: bounce 2s infinite;
    color: white;
}

.pin::before {
    content: '\1F4CD';
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

#loader p {
    font-size: 18px;
    color: white;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

#content {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 90%; 
    max-height: 90vh;
    margin-top: 20px;
    margin-left: 10%;
    margin-right: 10%;
}

h1 {
    font-size: 32px;
    margin: 0 0 20px 0;
    color: white;
}

.text-headline {
    font-size: 32px;
    color: white;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 10%;
}

.text {
    font-size: 20px;
    text-align: left;
    color: white;
    margin-left: 10%;
    margin-right: 10%;
}

#content img {
    max-width: 90%;
    max-height: 80vh;
    height: auto;
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.text a {
    color: lightblue;
}

#mail-link {
    color: white;
}

button {
 display: inline-block;
 border-radius: 5px;
 background-color: #444;
 border: none;
 color: #FFFFFF;
 text-align: center;
 font-size: 17px;
 padding: 16px;
 width: 180px;
 transition: all 0.5s;
 cursor: pointer;
 margin-top: 5px;
}

button span {
 cursor: pointer;
 display: inline-block;
 position: relative;
 transition: 0.5s;
}

button span:after {
 content: '»';
 position: absolute;
 opacity: 0;
 top: 0;
 right: -15px;
 transition: 0.5s;
}

button:hover span {
 padding-right: 15px;
}

button:hover span:after {
 opacity: 1;
 right: 0;
}

@media only screen and (min-width: 0px) and (max-width: 312px) {
    h1 {
        font-size: 23px;
        margin: 0 0 20px 0;
        color: white;
    }
    
    .text-headline {
        font-size: 23px;
        color: white;
    }
    
    .text {
        font-size: 13px;
        text-align: left;
        color: white;
    }
    button {
        font-size: 11px;
        width: 130px;
    }
    }

@media only screen and (min-width: 312px) and (max-width: 420px) {
    h1 {
        font-size: 24px;
        margin: 0 0 20px 0;
        color: white;
    }
    
    .text-headline {
        font-size: 24px;
        color: white;
    }
    
    .text {
        font-size: 14px;
        text-align: left;
        color: white;
    }
    button {
        font-size: 12px;
        width: 130px;
    }
    }

@media only screen and (min-width: 420px) and (max-width: 500px) {
    h1 {
        font-size: 25px;
        margin: 0 0 20px 0;
        color: white;
    }
    
    .text-headline {
        font-size: 25px;
        color: white;
    }
    
    .text {
        font-size: 15px;
        text-align: left;
        color: white;
    }
    button {
        font-size: 13px;
        width: 130px;
    }
    }

@media only screen and (min-width: 500px) and (max-width: 740px) {
    h1 {
        font-size: 26px;
        margin: 0 0 20px 0;
        color: white;
    }
    
    .text-headline {
        font-size: 26px;
        color: white;
    }
    
    .text {
        font-size: 16px;
        text-align: left;
        color: white;
    }
    button {
        font-size: 14px;
        width: 140px;
    }
    }

@media only screen and (min-width: 741px) and (max-width: 1000px) {
h1 {
    font-size: 28px;
    margin: 0 0 20px 0;
    color: white;
}

.text-headline {
    font-size: 28px;
    color: white;
}

.text {
    font-size: 16px;
    text-align: left;
    color: white;
}

button {
    font-size: 15px;
    width: 160px;
}
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
h1 {
    font-size: 30px;
    margin: 0 0 20px 0;
    color: white;
}

.text-headline {
    font-size: 30px;
    color: white;
}

.text {
    font-size: 18px;
    text-align: left;
    color: white;
}
}