/* Allgemeine Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter';
    color: #2D425E;
}

body#bar {
    background-color: #060D16;
}

body#bar * {
    color: #B8C7DD;
}

.centered-column-flexbox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

article {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

article,
section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

article.show,
section.show {
    opacity: 1;
    transform: translateY(0);
}

article.first {
    padding-top: 120px;
}

section {
    padding: 80px 20px;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.grey {
    background-color: rgba(184, 199, 221, 0.15);
}

/* Schriftarten */

h2 {
    font-size: 34px;
    font-weight: 300;
}

h2 span {
    font-family: 'Cormorant Garamond';
    font-size: 40px;
    font-weight: 600;
}

h3 {
    font-family: 'Cormorant Garamond';
    font-size: 40px;
    font-weight: 600;
}

article#bar h3 {
    margin-top: 10px;
}

h4 {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
}

p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

/* Buttons */

.button {
    padding: 12px 30px;
    background: linear-gradient(to right bottom, #2D425E, #365987);
    color: white;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 200;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease;
}

a.button:hover, a.footer-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.15);
}

.primary-button {
    padding: 12px 20px;
    background-color: #B8C7DD;
    color: #2D425E;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

a.primary-button:hover {
    background-color: white;
}

.footer-button {
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    border: .5px solid white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease;
}

@media screen and (min-width: 768px) {

    section {
        padding: 80px 50px;
    }

    article {
        padding: 80px 50px;
    }

    h2 {
        font-size: 36px;
        font-weight: 300;
        max-width: 650px;
    }

    h2 span {
        font-family: 'Cormorant Garamond';
        font-size: 42px;
        font-weight: 600;
    }

    h3 {
        font-size: 46px;
    }

}

@media screen and (min-width: 1024px) {

    section {
        padding: 80px 100px;
    }

    article {
        padding: 80px 100px;
    }
}

@media screen and (min-width: 1200px) {
    .content {
        max-width: 1100px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}