body {
    width: 90vw;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(0, 0, 0);
    color: rgb(238, 171, 0);
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

header {
    width: 90%;
    height: 175px;
    padding: 5px 0;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    box-sizing: border-box;
    background: rgb(0, 0, 0);
}

main {
    width: 100%;
    height: fit-content;
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
/*    border: 1px solid red; */
    box-sizing: border-box;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2rem;
}

#logo {
    width: 350px;
    height: auto;
}

footer {
    width: 90%;
    position: fixed;
    bottom: 0;
    text-align: center;
    padding: 10px 0;
    font-size: 0.55em;
    box-sizing: border-box;
    background: rgb(0, 0, 0);
}