body {
    height: 100dvh;
    background-color: black;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.header_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;

    padding-top: 1rem;
}

.header_text {
    color: rgb(48, 156, 48);
}

.main {
    margin-top: 30vh;
    flex: 1;
}

.main_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main_text {
    color: rgb(48, 156, 48);
}

.footer_badge {
    margin: auto;
    padding: .5rem;
}