*,
*::before,
*::after {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'DM Sans', sans-serif;
    background-color: black;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    position: relative;
}

.centered-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

@media (min-width: 48em) {
    .centered-image {
        width: 80%;
        max-width: 1200px;
    }
}

@media (max-width: 47.99em) {
    .centered-image {
        width: 100%;
    }
}

.bouncing-caret {
    position: absolute;
    bottom: 20px;
    animation: bounce 2s infinite;
    color: white;
    font-size: 44px;
    opacity: 0.3;
}

.bouncing-caret .material-icons {
    font-size: 44px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

main {
    background-color: black;
    color: white;
    font-size: 18px;
    padding: 60px;
    line-height: 1.6;
}

main section {
    max-width: 800px;
    margin: auto;
    padding: 120px 0;
}

main section:first-of-type {
    padding: 60px 0;
}

.section-divider {
    border: none;
    border-top: 1px solid white;
    opacity: 0.3;
    width: 40%;
    max-width: 600px;
    margin: 60px auto;
}

main section:nth-of-type(2) {
    padding-top: 60px;
    padding-bottom: 120px;
}

h2 {
    margin-top: 40px;
    font-size: 20px;
    line-height: 1.4;
}

h2:first-of-type {
    margin-top: 20px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #A5B9EB !important;
    text-decoration: none !important;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: white !important;
}

@media (max-width: 600px) {
    body, html {
        font-size: 14px;
    }
    main {
        padding: 32px;
    }
    main section {
        padding: 60px 0;
    }
}