*, *::after, *::before {
    padding: 0; margin: 0;
}

body {
    background: url('../img/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    color: #fff;

    line-height: auto;

    background-color: #33222C;
    display: grid;
    grid-template-columns: 75px auto 30%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header .nav-drop {
    outline: none; border: none;
    background: #33222C;
    width: 130px;
    height: 75px;
    border-radius: 0 0 30px 0;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;

    padding: 0 16px 0px 0px;

    font-size: 48px;
}

header button {
    display: inline;
    outline: none;
    background: none;
    background-color: transparent;
    border: none;

    width: 75px;
    height: 75px;

    font-size: 48px;
    cursor: pointer;
    color: #fff;

    position: relative;
}

header nav {

    margin-top: 8px;

    width: 75px;
    height: 70vh;
    background: #33222C;
    border-radius: 0 30px 30px 0;

    padding: 12px 5px 12px 0;
    
    font-size: 50px;
    text-align: center;
}

.hidden {
    display: none;
}

header nav a {
    color: #fff;
}

header nav ul {
    list-style: none;
}

header nav li:first-child {
    color: #fff;
}

.content {
    font-size: 96px;

    text-align: center;
}

.content h4 {
    font-size: 50px;
}

#links {

    position: absolute;
    top: 100px;
    left: 100px;

    padding: 25px;
    width: max-content;
    background: #33222C;

    font-size: 36px;
    border-radius: 25px;
}

#links .block a {
    color: #fff;
    text-decoration: none;
}