body {
    margin: 0;
    padding: 0;
    font-family:
        "Merriweather",
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol,
        Noto Color Emoji;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(145deg, #718789, #c8f8f5);
    color: white;
    text-shadow: 2px 2px 4px rgb(91, 154, 159);
    text-align: center;
}
a:link {
    color: white;
    text-decoration: none;
}
a:hover {
    color: white;
    text-decoration: underline;
}

a:visited {
    color: white;
    text-decoration: none;
    text-decoration-color: #718789;
}

@font-face {
    font-family: "Kollektif";
    src: url("/themes/fonts/Kollektif.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Gidole";
    src: url("/themes/fonts/Gidole-Regular.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}

.image-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
}
.image-container img {
    height: auto;
}

.splash-container {
    max-width: 600px;
    padding: 20px;
}
h1 {
    font-size: 3rem;
    font-family: "Kollektif", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: thin;
    margin-bottom: 20px;
}
h2 {
    font-family: "Gidole", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: thin;
}
p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #2575fc;
    background-color: white;
    border: none;
    border-radius: 5px;

    text-decoration: none;
}
.cta-button:hover {
    background-color: rgb(240, 240, 240);
}

.img-button {
    width: 300px;
    cursor: pointer;
}

.img-button:hover {
    opacity: 50%;
}

.img-logo {
    width: 150px;
    box-shadow: 5px 5px 10px rgba(91, 154, 159, 0.5);
    border-radius: 10px;
}