* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background-color: #000;
}

.page-container {
    width: 100%;
    min-height: 100vh;
}

.section {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    display: block;
    grid-template-columns: none;
}

.section-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.5) 70%,
            transparent 100%);
    z-index: 10;
}

.section-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.5) 70%,
            transparent 100%);
    z-index: 10;
}

.hover-light:hover {
    filter: brightness(1.1);
}

@font-face {
    font-family: "GS3 Cinzel Black";
    src: url("../../assets/font/GS3\ Cinzel-Black.ttf") format("truetype");
}

@font-face {
    font-family: "GS3 Cinzel Bold";
    src: url("../../assets/font/GS3\ Cinzel-Bold.ttf") format("bold");
}

@font-face {
    font-family: "RobotoCondensed SemiBold";
    src: url("../../assets/font/Roboto\ Condensed/RobotoCondensed-SemiBold.ttf") format("semibold");
}


#EventTitle,
#eventCalendarTitle,
#follow-us-content {
    font-family: 'GS3 Cinzel Black';
}

#weaponTitle,
#event-title,
#timeline1,
#timeline2,
#timeline3 {
    font-family: 'GS3 Cinzel Bold';
}

#weaponDescription,
#event-description {
    font-family: 'RobotoCondensed SemiBold';
}

.shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 600px) {

    .section-divider-bottom,
    .section-divider-top {
        height: 30px;
    }
}

@media only screen and (max-height:600px) {

    .section-divider-bottom,
    .section-divider-top {
        height: 50px;
    }
}