html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    background-color: #333333;
    color: white;
}

header{
    justify-content: space-between;
    align-items: center;
    display: flex;
    height: 30px;
    width: 100%;
    max-width: 100%;
    background-color: #B1AE91;
    padding: 20px 0;
    position: fixed;
}

header * {
    margin: 0;
    padding: 0;
    color: black;
}

.header-logo {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding-left: 30px;
}

header div{
    padding-right: 15px;
}

.header-nav ul {
    list-style: none;
    display: flex;
}

.header-nav li {
    margin: 0 15px;
}

.header-nav img {
    height: 10px;
}

.header-nav a {
    text-decoration: none;
}

.main-content{
    height: 100vh;
}

.home-main {
    line-height: 90px;
}

.content {
    padding: 10px 10vw;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.row .column{
    max-width: 45%;
}

.content * {
    margin: 0;
    padding: 0;
}

.arrow-animation {
    animation: arrow 2s infinite;
}

@keyframes arrow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
        animation-timing-function: ease-out;
    }
    100% {
        transform: translateY(0);
        animation-timing-function: ease-in;
    }
}

footer{
    background-color: #5C80BC;
    padding: 10px;
    justify-content: center;
    display: flex;
}

footer * {
    margin: 0;
    padding: 0;
}

.centered{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
}

.home-main .centered {

    font-size: 60px;
}

.centered * {
    margin: 0;
}

.regular-size {
    font-size: 18px;
}

.roboto-regular {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.roboto-bold {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}