/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    color: white;
}

html, body {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.main_container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    background-color: #343434 !important;
    overflow-y: auto;
}

.header_container {
    position: relative; 
    height: 10vh;
    min-height: 70px;
    background-color: rgb(40, 40, 40, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2 rem;
}

.menu_container {
    position: absolute;
    right: 25px;
    display: flex;
    gap: 20px;
}

.menu_button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #2a4f7c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.menu_button:hover {
    background-color: #1f3b5a;
}

.content_container {
    flex: 1;
    min-height: calc(100vh - 20vh);
    background-color: #343434;
    padding: 4rem;
}

.footer_container {
    height: 10vh;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(40, 40, 40, 1);
    color: white;
}

.return_home a {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: beige;
    margin-left: 0;
}