* {
    padding: 0px;
    margin: 0px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

/* Navigation Bar */
.nav {
    background-color: rgb(24, 23, 23);
}

.container-fluid {
    width: 80%;
    margin: auto;
    /* color: white; */
}

.nav-item {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
}

.nav-item a {
    color: white;
    font-weight: bolder;
}

.nav-item a:hover {
    color: goldenrod;
}

/* Banner */
.ban {
    width: 100%;
    height: 90vh;
    background-image: url(./prog1.jpg);
}

.banrap {
    margin-top: -8px;
    height: 90vh;
    background-color: rgb(0, 0, 0, 0.3);
}

body {
    font-family: "Alumni Sans", sans-serif;
    font-size: 16px;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    font-size: 1.5em;
    color: #fff;
    text-transform: uppercase;
    gap: 30px;
}

h1 {
    font-size: 2.5em;

    @media (max-width: 768px) {
        font-size: 1.3em;
    }
}

.text-shadow {
    font-style: italic;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: #fff;
    -webkit-text-stroke-width: 1px;
    text-shadow: 2px 2px 10px goldenrod;
    transition: all 0.5s ease-in-out;
    text-align: center;
    letter-spacing: 0.2em;
    animation: flicker 0.5s ease-in-out infinite alternate;

    &:hover {
        color: #fff;
    }
}

.tags small {
    @media (max-width: 768px) {
        font-size: 0.5em;
    }
}

@keyframes flicker {
    0% {
        opacity: 0.5;
        text-shadow: 2px 2px 10px goldenrod;
    }

    100% {
        opacity: 1;
        text-shadow: 2px 2px 20px goldenrod;
    }
}

/* Community */
.com {
    width: 100%;
    height: 70vh;
}

.comrap {
    width: 80%;
    margin: auto;
}

.comrap h1 {
    padding-top: 25px;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.comrap p {
    width: 60%;
    text-align: center;
    margin-left: 270px;
    margin-top: 25px;
}

.comrap1 {
    padding-top: 55px;
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 55px;
}

.box img {
    margin-left: 150px;
    width: 50%;
    height: 20vh;
}

.box h1 {
    font-size: 18px;
    text-align: middle;
    margin-left: 100px;
}

.box h2 {
    /* text-align: center; */
    font-size: 18px;
    margin-top: 15px;
    margin-left: 220px;
}

/*last*/
.last {
    width: 100%;
    height: 6vh;
    background-color: rgb(24, 23, 23);
}

.lastrap {
    width: 80%;
    margin: auto;
}

.lastrap h2 {
    color: white;
    font-size: 18px;
    padding-top: 17px;
    text-align: center;
    text-decoration: none;
    font-weight: lighter;
}