
@font-face {
    font-family: 'Bungee Inline';
    src: url(fonts/Bungee_Inline/BungeeInline-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Russo One';
    src: url(fonts/Russo_One/RussoOne-Regular.ttf);
    font-display: swap;
}


body, html, section {
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: 'Bungee Inline';
}

body {
    min-height: 100vh;
}

h1, h2 {
    font-weight: 100;
    letter-spacing: 5px;
    color: #fff;
}

h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2rem;
}

h3 > a {
    color: #00ffae;
    font-family: 'Russo One'; 
    font-size: 1rem;
    letter-spacing: 2px;
}

@media screen and (min-width: 768px) {
    h3 > a {
        font-size: 2rem;
    }
}

.navbar {
    font-size: 18px;
    background-image: linear-gradient(260deg, #2376ae 0%, #c16ecf 100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.main-nav {
    list-style-type: none;
    display: none;
}

.nav-links {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

.main-nav li {
    text-align: center;
    margin: 15px auto;
}

.navbar .logo {
    display: inline-block;
    font-size: 22px;
    margin-top: 10px;
    margin-left: 20px;
}

.navbar-toggle {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
}

.navbar .active {
    display: block;
}

@media screen and (min-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        height: 70px;
        align-items: center;
    }

    .main-nav {
        display: flex;
        margin-right: 30px;
        flex-direction: row;
        justify-content: flex-end;
    }

    .main-nav li {
        margin: 0;
    }

    .nav-links {
        margin-left: 40px;
    }

    .navbar .logo {
        margin-top: 0;
    }

    .navbar-toggle {
        display: none;
    }

    .navbar .logo:hover,
    .nav-links:hover {
        color: rgba(255, 255, 255, 1);
    }
}

section.main {
    height: 100vh;
    background: rgb(53,0,255);
    background: linear-gradient(129deg, rgba(53,0,255,1) 0%, rgba(134,0,255,1) 44%, rgba(107,69,252,1) 100%);
}

section.main .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
}

section.main .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section.main .content > * {
    text-align: center;
}

section.main .logo {
    width: 200px;
    margin: 20px auto;
    display: block;
}

.grid {
    width: 100%;
    height: 100%;
    position: absolute;;
    overflow: hidden;
}

.row {
    display: inline-flex;
    margin-left: -50px;
    margin-top: -32px;
    overflow: hidden;
    justify-content: center;
}

.row:nth-child(even) {
    margin-left: 1px;
}

.hexagon {
    background: rgba(0, 0, 0, 0.32);
    position: relative;
    height: 110px;
    width: 100px;
    margin: 1px;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    transition: 1s;
}
.hexagon.active {
    transition: 0s;
    background:  rgb(0 255 55 / 0.4);
}
