html, body {
    min-height: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 125%;
    background: whitesmoke;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Lexend Deca", Verdana, Arial, Helvetica, sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

/* Fullscreen */
.fullscreen {
    background: url(assets/fullscreen.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fullscreen::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
    background: rgba(0, 0, 0, .4);
}

.fullscreen * {
    z-index: 2;
}

.fullscreen-content {
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.github-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    padding: .5em;
    background-color: #333333;
    color: white;
    border-radius: 15px;
    transition: .25s background-color, .25s color;
}

.github-link:hover {
    color: black;
    background-color: #fafafa;
}

.github-link .gh-icon {
    font-size: 1.5em;
}
