html, body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 500;
}

html{
    height: 100%;
}

body{
    height: calc(100% - 145px);
    background-color: rgb(0, 136, 169);
    list-style-type: none;
}

.content{
    text-align: center;
    margin-top: 75px;
    padding-bottom: 70px;
    height: max-content;
}

@media screen and (max-width: 1000px) {
    .content{
        padding-bottom: 0;
        min-height: 100%;
    }
}