@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');

body {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(1000deg, #01020E, #1C1C3A);
    font-family: 'Quattrocento';
}

section {
    background-color: #d7d5e0;
    width: 50em;
    height: 50em;
    border-radius: 5%;
}

.header {
    text-align: center;
    line-height: 0;
    padding: 5em;
}


.header h1 {
    color: #1C1C3A;
    font-family: 'Oswald';
    font-size: 5em;
}

.header p {
    margin-top: 0;
    font-size: 1.2em;
}

.dropdown {
    margin: 20px 0;
}

select {
    padding: 10px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: white;
    color: black;
    font-family: 'Quattrocento';
    font-weight: bold;
}

.content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.content h2 {
    font-family: 'Oswald';
}

.content p {
    margin: auto 0;
    font-family: 'Quattrocento';
    text-align: center;
    display: block;
    font-size: 1.2em;
    font-weight: 550;
    max-width: 30em;
}


#content {
    max-height: 300px;  
    overflow-y: auto;   
    padding: 15px;
    border-radius: 10px;
}


#content::-webkit-scrollbar {
    width: 8px;
}

#content::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

#content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

#content::-webkit-scrollbar-thumb:hover {
    background: #333;
}

#content h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
}

#content ul {
    list-style-type: none;
    padding: 0;
}

#content ul li {
    background: #f8f8f8;
    margin: 10px 0;
    padding: 10px 10px;
    border-left: 4px solid #444;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

#content ul li strong {
    font-size: 18px;
    color: #222;
}

#content ul ul {
    margin-top: 5px;
    margin-left: 20px;
    list-style-type: disc;
}

#content ul ul li {
    background: none;
    border-left: none;
    padding: 3px;
    font-size: 16px;
    color: #555;
    box-shadow: none;
}

@media (max-width: 768px) {
    body {
        height: auto;
        padding: 20px;
    }

    section {
        width: 95%;
        max-width: 30em;
        padding: 1.5em;
        border-radius: 10px;
    }

    .header {
        padding: 1em;
    }

    .header h1 {
        font-size: 2.5em;
    }

    .header p {
        font-size: 1em;
    }

    select {
        font-size: 1em;
        width: 100%;
    }

    .content {
        padding: 15px;
    }

    .content h2 {
        font-size: 1.5em;
    }

    .content p {
        font-size: 1em;
    }

    #content {
        max-height: 250px;
        padding: 10px;
    }

    #content h2 {
        font-size: 1.2em;
    }

    #content ul li {
        padding: 8px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2em;
    }

    .header p {
        font-size: 0.9em;
    }

    .content h2 {
        font-size: 1.3em;
    }

    .content p {
        font-size: 0.9em;
    }

    select {
        font-size: 0.9em;
    }

    #content {
        max-height: 200px;
    }

    #content h2 {
        font-size: 1.1em;
    }
}
