* {
    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(./loop.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.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;
    }
}

/* Mid */
.mid {
    width: 100%;
    height: 180vh;
    background-color: lightslategray;
}

.midrap {
    width: 80%;
    margin: auto;
}

.coloumn h1 {
    text-align: center;
    padding-top: 30px;
    font-size: 75px;
    color: black;
    font-family: 'Marck Script', cursive;
}

.coloumn li {
    list-style-type: none;
    margin-top: 25px;
    font-size: 25px;
}

.coloumn ul li a {
    text-decoration: none;
    color: white;
}

.coloumn ul li a:hover {
    color: black;
}

/*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;
}