body {
    background-image: url("/img/background2.png");
    background-size:cover;
    display: flex;
    text-align: center;
    font-size: 2rem;
    min-height: 100vh;
    margin: 0;
    font-family: 'Stack Sans Headline';
    color: aliceblue;
    flex-direction: column;
    align-items: center;
}

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

p {
    margin: 0;
}

#header {
    background-color: rgba(34, 40, 49, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 98%;
    box-sizing: border-box;
    margin: 1%;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
}

.dropdown button {
    font-size: 1.5rem;
    border: none;
    border-radius: 5px;
    background-color: rgb(240, 240, 245);
    transition: background-color 0.2s;
    padding: 0.4rem 1rem;
}

.dropdown:hover button {
    transition: 0.2s;
    background-color: rgb(0, 173, 181);
}

.dropdown .dropdown_content {
    display: none;
}
.dropdown:hover .dropdown_content {
    display: block;
}

.dropdown_content {
    position:absolute;
    transition: 0.2s;
    background-color: rgba(34, 40, 49, 0.8);
    border-radius: 10px;
}

.dropdown_content a {
    display: block;
    background-color: rgb(240, 240, 245);
    margin: 0.4rem;
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    transition: 0.2s;
}

.dropdown_content a:hover {
    background-color: rgb(0, 173, 181);
    scale: 1.03;
}

.section {
    display: flex;
    justify-content: flex-start;
    background-color: rgba(34, 40, 49, 0.6);
    border-radius: 10px;
    width: 96%;
    margin: 1%;
    padding: 1%;
    height: fit-content;
    align-items: inherit;
    flex-direction: column;
}

button {
    border: none;
    font-family: 'Stack Sans Headline';

}

.section_header {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.5rem;
    padding: 1rem;
    gap: 2rem;
}

.button {
    background-color: rgb(240, 240, 245);
    border-radius: 10px;
    padding: 1rem;
    font-size: 2rem;
    transition: background-color 0.2s, scale 0.2s;
}

.button:hover {
    background-color: rgb(0, 173, 181);
    cursor: pointer;
    scale: 1.03;
}

.section_p {
    font-size: 2rem;
}

h1 {
    margin-bottom: 0;
}

#p1 {
    margin-bottom: 3rem;
}

h2 {
    width: 50%;
}

.section_img {
    border-radius: 10px;
    margin: 1rem;
    max-width: 100%;
    height: auto;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(34, 40, 49, 0.8);
}

::-webkit-scrollbar-thumb {
  background: rgba(34, 40, 49, 0.5);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(34, 40, 49);
}

@media (max-width: 768px) {
    .section_header {
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        font-size: 1.5rem;
        padding: 1rem;
        gap: 2rem;
    }

    .section_img {
        border-radius: 10px;
        margin: 1rem;
        max-width: 95%;
        height: auto;
    }
}

#section1 {
    display: none;
}