body {
    background-color: #19041f;
}

section {
    background-color: #00000070;
    border-radius: 20px;
    margin: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h3 {
    color: antiquewhite;
    font-size: 22px;
}

section > p {
    font-size: 18px;
    margin: 15px;
    text-align: center;
    color: antiquewhite;
}

.overview {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.overview > a {
    margin: 1%;
    size: 20px;
}

.nav-button {
    background-image: linear-gradient(#7f3b86, #460f40);
    border: none;
    color: antiquewhite;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 16px;
}

.nav-button:hover {
    background-image: linear-gradient(#460f40, #7f3b86);
}

#intro-paragraph {
    font-size: 32px;
    font-family: 'Courier New', Courier, monospace;
    color: antiquewhite;
    text-align: center;
    text-shadow: 0px 0px 10px violet, 0px 0px 5px violet;
}

@media only screen and (max-width: 600px) {

    .cards {
        flex-direction: column;
        align-items: center;
    }

}

/* GDPR CSS classes */

.gdpr-protectwall {
    height:100%;
    width:100%;
    background-color:black;
    position: fixed; 
    z-index: 10000; /* puts it on top of everything */
    top: 0;
    left: 0;
    opacity: .3; /* so we can see through it */
}

.gdpr-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(#7f3b86, #460f40);
    color: antiquewhite;
    position: fixed;
    z-index: 100000;
    bottom: 5%;
    left: 25%;
    right: 25%;
    padding: 10px;
    margin: 5px;
    border: 2px solid black;
    border-radius: 15px;
}

.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__button--accept {
    background-color: #d5f5d5;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
}

.gdpr-consent__button--accept:hover {
    background-color: #c5e3c5;
}

.gdpr-consent__button--reject {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
}

.hide{
    display: none;
}

.show{
    display: block;
}
