@font-face {
    font-family: Glacial Indifference Bold;
    src: url("GlacialIndifference-Bold.otf");
}
@font-face {
    font-family: Glacial Indifference;
    src: url("GlacialIndifference-Regular.otf");
}
html, body {
    font-family: Glacial Indifference;
    margin:0;
    padding:0;
}
#splash {
    background-color: black;
    width: auto;
    height:100vh;
    display:flex;
    margin:0;
    padding:0;
}
#splashImgDiv {
    display:flex;
    margin:auto;
    height:100%
}
#splashImgDiv img {

}
#content {
    display:flex;
    padding-top:10%; 
    flex-direction:column;
}
.contentLine {
    display:flex;
    width:100%;
    margin-bottom:10%; 
}
.col1 {
    color:black;
    font-weight:600;
    font-size:48px;
    padding-left:5%;

    width:20%;
}
.col2 {
    width:80%;
    padding-right:5%;
    padding-top:7px;
    font-size:18px
}
strong {
    font-size:20px
}
.concernTitle {
    font-size:24px;
    font-weight:600;
}
.concernContent {
    padding-top:20px;
    margin-bottom:80px;
}
.concernContent:last-child {
    margin-bottom:0;
}
#contact {
    margin-top:30px;
    background-color:black;
    width:fit-content;
    color:white;
    font-size:24px;
    font-weight:600;
    padding:10px 20px;
    border-radius:10px;
}
a {
    text-decoration:none;
}
@media screen and (max-width:1500px) {
    .col1 {
        font-size:36px;
    }
}
@media screen and (max-width:1200px) {
    .col1 {
        font-size:32px;
    }
}
@media screen and (max-width:980px) {
    #splashImgDiv, #splashImgDiv img {
        max-width:100%
    }
    #splashImgDiv img { 
        object-fit:contain;
    }
    #content {
        padding-top:20%;
    }
    .contentLine {
        flex-direction:column;
        margin-bottom:20%
    }
    .col1 {
        padding-bottom:10px;
        width:90%;
        font-size:48px;
    }
    .concernTitle {
        font-size:32px;
    }
    .col2 {
        width:90%;
        padding-left:5%;
        padding-right:5%;
        font-size:28px;
    }
    strong {
        font-size:30px;
    }
    #contact {
        font-size:32px;
    }
}