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

#p1 {
    margin: 0;
    font-size: 1.5rem;
}

p {
    margin: 0;
}

#p3, #p4 {
    margin: 0;
    font-size: 1.25rem;
}

#stupid_box {
    font-family: 'Stack Sans Headline';
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#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;
}

h2, h3, h1 {
    max-width: 850px;
    margin: 0;
}

h1 {
    font-size: 4rem;
}

h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

button, mailto {
    font-family: 'Stack Sans Headline';
    color: black;
}

a {
    text-decoration: none;
    color: black;
    font-family: 'Stack Sans Headline';
}

::-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);
}

.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;
}

.section_header {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 2rem;
    padding: 1rem;
    gap: 2rem;
    background-color: rgba(34, 40, 49, 0.6);
}

.section_header_footer {
    margin-top: 2%;
    font-size: 2.5rem;
}

.essay {
    max-width: 900px;
    margin-block: 1%;
}

.section_button {
    background-color: rgb(240, 240, 245);
    border-radius: 10px;
    padding: 1rem;
    font-size: 2rem;
    transition: background-color 0.2s, scale 0.2s;
    font-family: 'Stack Sans Headline';
    padding-inline: 1%;
}

#essay1 {
    margin-top: 0;
}

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

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

#sct4 {
    gap: 1rem;
}

.different {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
}

.different_header {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 2rem;
    padding: 1rem;
    gap: 2rem;
    background-color: rgba(34, 40, 49, 0.6);
}

@media (max-width: 768px) {
    .different {
        flex-direction: column;
    }

    .desktop-only {
        display: none;
    }

    #different_button {
        width: 80%;
    }
}

#different2 {
    display: none;
}