* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    scroll-behavior: smooth;
    transition: all 0.2s ease;
}

body {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-color: #030814;
    height: 100vh;
}

body.visible {
    opacity: 1;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #030814;
}

::-webkit-scrollbar-thumb {
    background: #244DFE;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0A1A46;
}

#terms {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.terms__container {
    background-color: #030814;
    border: 6px solid #091128;
    border-radius: 20px;
    padding: 30px;
}

.terms__container h1 {
    color: #fff;
    font-size: 2rem;
    padding-bottom: 30px;
    text-decoration: underline;

}

.terms__container h3 {
    color: #012485;
    font-size: 1.5rem;
    text-decoration: underline;
}

.terms__list {
    display: grid;
    color: #92989F;
    row-gap: 10px;
    font-size: 1.2rem;
}

.terms__content {
    display: grid;
    row-gap: 25px;

}