@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
    background-color: #dcdcdc;
}

.splash-container {
    position: relative;
}

.splash {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    align-items: center;
}

.splash img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    object-position: center center;
    position: absolute;
}

.splash .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 5% 0;
    z-index: 1;
}

.splash h1 {
    max-width: 80%;
    color: #ffffff;
    padding:  1rem 0 0 0;
    font-size: 40pt;
    text-shadow: 2px 2px 6px rgba(0,0,0,.6);
}

.splash h1 span {
    text-decoration: underline;
}

.splash h2 {
    color: #ffffff;
    font-size: 25pt;
    padding: 10px;
}

.splash p {
    color: #ffffff;
    font-size: 15pt;
    font-weight: 700;
    margin: 0 1%;
    padding: 10px;
    text-shadow: 1px 1px 8px rgba(0,0,0,1);
}

.splash a {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
    border-width: 5px;
    border-radius: .5rem;
    text-align: center;
    padding: 20px;
    margin: 8px;
    font-size: 15pt;
    font-weight: 800;
    text-decoration: none;
    width: 65%;
    transition: ease 0.5s;
}

.splash a:hover {
    opacity: 60%;
}

.splash-end-bar {
    background-color: #243043;
    box-shadow: 0px 1px 8px 2px;
    height: 10vh;
}

.quick-info {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

.quick-info img {
    /* WHY ARE NO IMAGES UNLICENSED THO */
    padding: 0;
}

.quick-info .attention {
    font-weight: 900;
    margin: 2% 3% 1% 10%;
    font-size: 50pt;
    max-width: 80%;
    color: #4b5a74;
}

.quick-info .date {
    margin: 0 0 2% 0;
    color: #000000;
    font-size: 12pt;
}

.quick-info .attention::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #243043;
    display: block;
    margin: auto;
}

.quick-info h2 {
    margin: 0% 0% 0% 10%;
    font-size: 30pt;
    max-width: 80%;
    color: #4b5a74;
}

.quick-info p {
    margin: 0px 20px 20px 20px;
    max-width: 80%;
    align-self: center;
    text-align: start;
    font-size: 14pt;
}

.quick-info .bold {
    font-size: 17pt;
    font-weight: 900;
    color: #243043;
}

.quick-info .italics {
    font-style: italic;
}

.quick-info .bitalics {
    font-weight: 700;
    font-style: italic;
}

.quick-info .lb {
    display: block;
    margin-top: 20px;
}

.quick-info p a {
    color: #000000;
}

.quick-info .ender {
    font-weight: 900;
    margin: 0 0 2% 10%;
    font-size: 50pt;
    max-width: 80%;
    color: #4b5a74;
} 

.quick-info-end-bar {
    background-color: #243043;
    box-shadow: 0px 1px 8px 2px;
    height: 5vh;
    margin-top: 30px;
}

.victims {
    display: flex;
    padding: 5% 0% 5% 10%;
    background-color: #292929;
    flex-direction: column;
}

.victims h1::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    display: block;
    margin: auto;
}


.victims h1 {
    font-weight: 800;
    font-size: 40pt;
    color: #dcdcdc;
    max-width: 80%;
}

.victims p {
    color: #dcdcdc;
    padding: 20px 0;
    font-weight: 300;
    max-width: 80%;
}

.victims p span {
    margin-right: 20px;
}

@media screen and (max-width: 1020px){
   .splash img {
        min-height: 100%;
   }
}

@media screen and (max-width: 800px){
    
    .splash img {
        min-height: 100%;
    }
    .splash h1 {
        font-size: 30pt;
    }

    .splash h2 {
        font-size: 20pt;
    }
}

@media screen and (max-width: 600px){
    .splash h1 {
        font-size: 25pt;
    }

    .splash h2 {
        font-size: 16pt;
    }

    .splash p {
        font-size: 13pt;
    }

    .splash a {
        width: 85%;
    }

    .quick-info .attention {
        font-size: 30pt;
        width: 100%;
    }

    .quick-info .ender {
        font-size: 30pt;
        width: 100%;
    }

    .victims h1 {
        font-size: 30pt;
        width: 100%;
    }
}

