body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 1em auto 3em;
    padding: 0 5px;
    background-color: #333;
    color: white;
    background-repeat: no-repeat;
}
#root {
    display: flex;
    flex-direction: column;
    gap: 10em;
    padding: 0 0.5em;
}
.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2em;
    padding: 0 1em;
}
.logo-link {
    color: white;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo-with-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5em;
}
.submit-container {
    display: flex;
    justify-content: end;
}
.btn {
    border: 0;
    padding: 1em 2em;
    font-size: large;
    cursor: pointer;
    border-radius: 1em;
    width: fit-content;
}
.nav-btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1em;
    align-items: center;
}
.hero {
    display: flex;
    gap: 3em;
    justify-content: center;
    text-align: justify;
    flex-wrap: wrap;
}
.hero-img {
    border-radius: 3em;
}
.hero-text {
    width: 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-us-section {
    display: flex;
    justify-content: center;
    gap: 2em;
    align-items: center;
    padding: 0 1em;
    flex-wrap: wrap;
    flex-direction: column;
}
.about-us-img {
    height: 500px;
    width: 500px;
    background-image: url("./assets/study_hall.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    border-radius: 3em;
}
.section {
    height: fit-content;
    padding: 2em;
    font-size: large;
    display: flex;
    justify-content: space-around;
}
a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}
p {
    text-align: justify;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 1em;
    border-radius: 0.25em;
    width: 600px;
}
input {
    font-size: 1em;
    padding: 0.25em;
    border: 0;
    border-radius: 0.25em;
}
.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
    border-bottom: 1px solid black;
}
textarea {
    font-size: 1em;
    padding: 0.25em;
    font-family: Arial, Helvetica, sans-serif;
    border: 0;
    border-radius: 0.25em;
}
label {
    font-family: Arial, Helvetica, sans-serif;
}
.title {
    margin-left: 0.5em;
}
.title-about-us {
    opacity: 0.5;
    font-size: 6em;
}
.list {
    font-size: x-large;
    margin: 0;
    border-radius: 2em;
    max-width: 980px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
li {
    list-style: square;
    margin-bottom: 1em;
}
.inner-ul {
    margin-top: 1em;
}
.btn-to-top {
    text-align: end;
}
.hallway {
    background-color: rgba(0, 0, 0, 0);
    height: 500px;
}
.display-absolute {
    position: absolute;
    left: 0;
}
.row-container {
    display: flex;
    flex-direction: column;
}
.foo {
    background-color: gray;
    padding: 1em;
    border-radius: 1em;
}
.bar {
    display: flex;
    align-items: center;
}
.about-container {
    display: flex;
}