/* Clean Slate */
* {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Font Setup */
@font-face {
    font-family: motherish;
    src: url(/Motherish-Regular.otf);
}

h1 {
    font-size: 5rem;
    background-color: rgb(163, 170, 177);
    border-radius: 1rem;
    padding: .5em;
    color: rgb(16, 16, 24);
    text-align: end;
}

h2 {
    font-size: 2.5rem;
    margin-top: 3rem;
    color: mediumseagreen;
}

h3 {
    font-size: 1.5rem;
    color: mediumseagreen;
}

ol {
    margin: 0 3rem;
}

a {
    color: mediumseagreen;
    /* text-decoration: none; */
}

a:hover {
    color: darkorchid;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("/assets/backgrounds/uv-grid.png");
    background-size: 50%;
    color: seashell;
    font-family: motherish;
}

.main-container {
    width: 50%;
    background-color: rgb(16, 16, 24);
    padding: 5rem 10rem;
    margin: 2rem;
    border-radius: 1rem;
}

p {
    margin: 1rem;
    font-size: 1.5rem;
}

li {
    font-size: 1.5rem;
}

.italic {
    font-style: italic;
}