.navItemText{
    font-family: font, Geneva, Tahoma, sans-serif;
    font-size: 30px;
    color: white;
    padding-left: 8px;
}

@font-face {
    font-family: 'font';
    src: url('fonts/font.woff2') format('woff2'),
         url('fonts/font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.mainBodyText,
.mainBodyListItem,
.mainBodyListItem a {
    font-family: 'font', font, Geneva, Tahoma, sans-serif;
}

.bodyBackground{
            background-image: url('https://hc-cdn.hel1.your-objectstorage.com/s/v3/61cc808dc58b6871c826bd40c2f4c4ea05d1cc14_mathias-reding-3p9qzn5uf5q-unsplash__1_.jpg'); /*Background open-source under Unsplash Licence, attribution to Mathais Reding, contact@matreding.com*/
            background-repeat: repeat; 
            background-size: auto;
        }
.mainBodyHeading{
    font-family: font, Geneva, Tahoma, sans-serif;
    font-size: 40px;
    color: #ffffff;
    padding: 8px;
    text-align: center;
}

.mainBodyText{
    font-family: font, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    color:  #02d47c;
    padding: 5px;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
}

.footerText{
    font-family: font, Geneva, Tahoma, sans-serif;
    font-size: 11px;
    color:  #007645;
    padding: 5px;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
}

.footerText a {
    color: #00f7a5;
    text-decoration: none;
}

.mainBodyListItem{
    font-family: font, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    color:  #02d47c;
    padding: 5px;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    list-style: none;
}

.mainBodyListItem a {
    color: #1bffb3;
    text-decoration: none;
}

.mainBodyListItem a:hover {
    color: white;
    animation: bounce 0.3s ease-in-out infinite;
    background: #085239;
    border-radius: 3px; 
    box-shadow: 0 4px 20px #085239;
    border: 8px solid #085239;
}

.mainBodyListDescription{
    font-family: font, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    color:  #02d47c;
    padding: 5px;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media only screen and (max-width: 1310px) {
    .hamburger {
        display: flex;
    }
    
    .mainBodyText,
    .mainBodyTextHyperLink,
    .mainBodyListItem{
    line-height: 2;
    }

    nav {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #02d67e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 6rem 0 2rem 0;
        border-radius: 0 0 8px 8px;
        height: 100vh;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-logo {
        margin-right: 0 !important;
        justify-content: center;
    }
    
    .nav-hackclub {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
    
    .nav-item,
    .nav-hackclub {
        display: none;
    }
    
    .nav-menu.active .nav-item,
    .nav-menu.active .nav-hackclub {
        display: block;
    }
    
    .navItemText {
        font-size: 24px;
    }
}