* {
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
}


/*header styles*/
header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #613380;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



header ul {
    list-style: none;
    display: flex;
}

.nav-link {
    text-decoration: none;
    padding: 20px;
    color: white;
    display: block;
}

.nav-link:hover {
    background-color: white;
    color: black;
}

/*main styles*/
main {
    max-width: 1000px;
    width: 100%;
    margin: 30px auto;
    background-color: white;
}

/*hero styles*/
.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.call_to_action {
    color: #613380;
}

/*activities styles*/
.activities-box, .icon, .description {
    display: flex;
    justify-content: center;
}


.activities-box {
    margin: 30px 0;
}

.icon {
    align-items: center;
    width: 15vw;
    font-size: 60px;
    color: #613380;
    margin-right: 10px;
}

.description {
    flex-direction: column;
    width: 65vw;
}

.description h3 {
    color: #613380;
    margin-bottom: 10px;
}

/*video styles*/
.video {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    
}

/*contact styles*/
#contact h3 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0 10px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
    border: 1px solid #613380;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);


}
.contact-name {
    background-color: #613380;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;

}

.fa-discord {
    color: #5865f2;
}

.contact-text {
    padding: 10px;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    header ul {
        display: block;
    }

    .hero {
        margin-top: 60px;
    }

    .description {
        width: 80vw;
    }

    .icon {
        display: none;
    }

    .contact-box {
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}