* {
    color: black;
    font-family: "verdana", sans-serif;
    -webkit-text-size-adjust: 100%;

    --bg-blue: rgb(0, 38, 77);
    --bg-blue-light: rgb(0, 58, 116);
}

body {
    margin: 0px;
    background-color: rgb(255, 255, 255);
}
.page-stretcher {
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.link {
    font-weight: bold;
    text-decoration: underline;
    color: rgb(0, 106, 106);
}

.header-block {
    color: white;
    background-color: var(--bg-blue-light);
    margin: 0px;
    padding: 70px 10px 10px 10px;
}
.header-block h1 {
    color: white;
    margin: 0px;
    padding-top: 0px;

    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* 100-900 */
    font-style: normal;
}
.header-block img {
    display: block; 
    max-height: 250px; 
    max-width: 75%;
    margin: 20px auto 20px auto;
    box-shadow: 0px 0px 10px 2px rgb(0, 0, 0);
    background-clip: border-box;
    border-radius: 10px;
}

h1, h2, h3 {
    text-align: center;
}

.page-section {
    border: 2px black solid;
    border-radius: 10px;
    margin: 10px;
}
.text-block {
    padding: 0px;
    margin: 20px;
    min-width: 200px;
}

.feature-image {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    border-radius: 10px;
}
.feature-image-large {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 630px;
    border-radius: 10px;
}
.button-container {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
}
.styled-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;

    padding: 10px;
    color: white;
    background-image: linear-gradient(rgb(18, 114, 114), rgb(12, 77, 77));
    border: 1px solid white;
    border-radius: 5px;
    text-decoration: none;

    margin-top: 20px;
    margin-bottom: 20px;
}
.styled-button.fixed-width {
    width: 200px;
}

.separator {
    width: 75%;
}

.rstack {
    margin: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 20px;
}
.rstack .text-block {
    margin: 0px;
}
.rstack img {
    width: 50%;
    align-self: center;
}

.reveal {
    opacity: 0;
    scale: 94%;

    animation: reveal-load 0.4s ease-in;
    animation-fill-mode: forwards;
    animation-delay: 0.15s;
}
.scroll-fade-hide {
    opacity: 0;
    transition: opacity 1.5s;
}
.scroll-fade-show {
    opacity: 1;
}

@keyframes reveal-load {
    from {
        opacity: 0;
        scale: 96%;
    }
    to {
        opacity: 1;
        scale: 100%;
    }
}
@keyframes reveal-slide-right {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes reveal-slide-left {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* COMPACT */
@media(max-width: 700px) {
    .rstack {
        flex-direction: column;
        row-gap: 20px;
    }
    .rstack img {
        width: 75%;
    }
    .header-block h1.shrink {
        font-size: 1.3em;
    }
    .feature-image-large {
        width: 90%;
    }
}
