body,
html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-family: 'Red Hat Display', sans-serif;
    background-color: #1F1F1F;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    width: 70%;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

li:last-child {
    margin-bottom: 0;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

.back-arrow {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 20px;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    li {
        font-size: 1.1rem;
    }
}