@font-face {
    font-family: Izhitsa;
    src: url("Izhitsa Regular.ttf");
    font-display: optional;
}

@font-face {
    font-family: Arimo;
    src: url("Arimo-VariableFont_wght.ttf");
    font-display: optional;
}

* {
    margin: 0;
    padding: 0;
    font-family: Izhitsa;

}

body {
    background-color: antiquewhite;
}

.mainmenu {

    width: auto;

    height: fit-content;

    background-color: #490508;

    padding: 20px 10vw;

    display: flex;

    flex-wrap: wrap;

    flex-direction: row;

    list-style-type: none;

    justify-content: space-between;

}

/*.mainmenu li {

    padding: 15px 30px;

    margin: 0 15px;

    text-align: center;

    background-color: black;

    display: flex;

    border-radius: 5%;



}*/

.mainmenu a {

    color: antiquewhite;

    text-decoration: none;

    padding: 5px 30px;

    text-align: center;

    border: 0px solid black;

    font-size: calc(42px/1.5);
}

@media (max-width: 1000px) {
    .mainmenu {
        width: auto;
    }
}
footer {
    width: auto;
    height: 20vh;
    background-color: #323272;
    margin-top: 20px;
    padding: 20px 10vw;
    color: antiquewhite;
    line-height: 150%;
    font-size: 20px;
}
footer ul {
    list-style-type: none;
    line-height: 200%;
    width: fit-content;
    outline: 0px solid black;
    margin: 0 auto;
    text-align: center;
}
footer a {
    color: antiquewhite;
}