@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto.ttf");
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/RobotoItalic.ttf");
    font-style: italic;
}


body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Roboto";
    width: 100vw;
    box-sizing: border-box;
}

a {
    color: antiquewhite;
}

.header {
    width: 100%;
    background-color: #192A51;
    color: aliceblue;
    display: flex;
}

.header-title {
    padding: 20px;
}

.header-links {
    flex-grow: 1;
}

.content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url("../images/bager_bg.jpg");
    background-size: cover;
}

.voscilo {
    font-size: 2em;
}

.footer {
    background-color: #192A51;
    padding: 20px;
    display: flex;
    justify-content: center;
    color: aliceblue;
}

.footer p {
    vertical-align: middle;
}