*{
    box-sizing: border-box;
}

html{
    font-size:16px;
    margin:0;
    padding:0;
    font-family: 'calibri', sans-serif;
}

body{
    margin:0;
    padding: 2rem;
}

nav{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;

    &.pull-right{
        align-items: flex-end;
    }

    a{
        width: 15rem;
        text-decoration: none;
        text-transform: uppercase;
        background: #0d4377;
        color:white;
        border-radius: 0.2rem;
        padding: 0.5rem 0.8rem;

        &.fit{
            width: fit-content;
        }

        &:hover{
            background: #0d437799;
        }
    }
}

.image-container{
    position: fixed;
    bottom:0;
    left:0;
    right:0;
    top: 50dvh;

    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
}

h1,h2,h3,h4,h4,h6 {
    color: #0d4377;
}

h1{
    text-transform: uppercase;
    &.center{
        text-align: center;
    }
}

pre{
    background: #eee;
    padding:20px 10px;
    border-radius: 4px;
}