@font-face {
    font-family: 'Montserrat';
    src: url(Montserrat.ttf) format('ttf');
}

html, body {
    background: #222020 !important;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}
  
.container {
    max-width: 1250px;
    margin: 30px auto 30px;
    padding: 0 !important;
    width: 90%;
}

header {
    border-radius: 10px 10px 0 0;
    background: url('/resources/images/banner.webp') no-repeat center;
    background-size: cover;
    height: 250px;
}

.left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.right {
    padding: 0 25px 0 25px !important;
}

.personalia {
    border-top: 4px solid white;
    border-radius: 0 0 10px 10px;
    margin-bottom: 25px;
    background: #333030;
}

li {
    color: whitesmoke;
}

.content {
    border-radius: 10px;
    margin-bottom: 50px;
    background: #333030;
    color: whitesmoke;
}

.personalia-avatar__image {
    width: 200px;
    height: 200px;
    margin-top: -120px;
    border-radius: 25%;
    border: 4px solid #fff;
}

.personalia__name {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18pt;
    color: whitesmoke;
}

.personalia__phone,
.personalia__email,
.personalia__address {
    margin-top: -5px;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11pt;
    color: whitesmoke;
}

.personalia__description {
    text-align: center;
    margin-top: 25px;
    margin: 25px 40px;
    color: whitesmoke;
    font-size: 11pt;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 25px;
    border-bottom: 1px solid #ededed;
}


/* GDPR Form Styling */
.gdpr-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: 10px auto;
    border: 2px solid white;
    border-radius: 10px;
    background: #333030;
    color: white;
}

@media only screen and (min-width: 800px) {
    .gdpr-consent {
        width: 40%;
    }
}

.gdpr-consent__description {
    display: flex;
    justify-content: center;
}

.gdpr-consent__choice {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    width: 100%;
}

.gdpr-consent__choice > button {
    background-color: #333030;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid white;
    width: 100px;
    color: white;
}

.hide { display: none; }

.show { display: block; }