/* -------------------------------------------------------------------------- */
/* Global Layout & Typography                                                 */
/* -------------------------------------------------------------------------- */

html,
body {
    height: 100%;
}

body {
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
    background-color: #2f2f2f;
    min-height: 100vh;
    display: grid;                  /* Header → content → footer */
    grid-template-rows: auto 1fr auto;
}


/* -------------------------------------------------------------------------- */
/* Links                                                                      */
/* -------------------------------------------------------------------------- */

a {
    color: #4da3ff;
    text-decoration: none;
}

a:hover {
    color: #8cc7ff;
    text-decoration: underline;
}


/* -------------------------------------------------------------------------- */
/* Typography Blocks (Intro, Titles, Text)                                    */
/* -------------------------------------------------------------------------- */

.intro {
    font-size: x-large;
    text-align: center;
}

.infotitle {
    font-size: xx-large;
    text-align: center;
    font-weight: bold;
}

.infotext {
    font-size: x-large;
    text-align: center;
}


/* -------------------------------------------------------------------------- */
/* Section Containers (Row + Inner Box)                                       */
/* -------------------------------------------------------------------------- */

.row3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 4rem auto;
    width: 100%;
}

.box {
    width: 80%;
    margin: 0 auto;
    padding: 2rem 5%;
    background-color: #302850;
    border-radius: 20px;
    box-shadow: 0 0 20px #766e97;
}

.slideshow-box {
    padding: 1.5rem;
}


/* -------------------------------------------------------------------------- */
/* Scroll Text Blocks                                                         */
/* -------------------------------------------------------------------------- */

.scroll-box {
    background-color: #454545;
    color: white;
    border-radius: 20px;
    padding: 2rem 5%;
}

.scroll-text {
    margin: 0;
    font-size: larger;
}


/* -------------------------------------------------------------------------- */
/* Bullet List Styling                                                        */
/* -------------------------------------------------------------------------- */

.list-wrapper {
    width: 100%;
    margin: 2rem auto 0;
    text-align: center;
}

.list-wrapper ul {
    list-style-position: inside;
    padding-left: 0;
    margin: 0 auto;
}

.list-wrapper li {
    text-align: center;
    font-size: large;
    margin-bottom: 0.75rem;
}

.list-wrapper li::marker {
    font-size: 1.5em;
    color: #ffffff;
}


/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

footer h6 {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

footer p {
    font-size: 0.8rem;
}
