html {
    font-family: 'Montserrat Alternates', sans-serif;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    margin: 0;

    background-color: #212121;
    color: white;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2em;
    min-width: 100%;
}

.title {
    font-size: 6em;
    margin-bottom: 8px;
    text-align: center;
}

.nav-links {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
}

.nav-links > .nav-field {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    filter: drop-shadow(3px 3px 6px black);
    border: 1px solid white;
}

.nav-links > .nav-field > img {
    width: 100%;
}

.nav-works {
    overflow: hidden;
    text-align: center;
}

.nav-works > .nav-text {
    font-size: 1.5em;
}

@media (max-width: 425px) {
    body {
        position: relative;
    }

    .title {
        font-size: 3em;
    }

    .nav-works {
        display: flex;
        flex-direction: column;
    }

    .nav-works > .line {
        visibility: hidden;
        height: 0px;
    }

    .nav-works > .nav-text {
        font-size: 1em;
    }

    .nav-links > .nav-field {
        width: 32px;
        height: 32px;
    }

    .div-info {
        text-align: center;
        padding: 16px;
    }
}