@font-face {
    font-family: rliTitle;
    src: url("/fonts/WelcomePageTitle.otf");
}

html {
    background-color: rgb(45, 45, 45);
}

body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

#flexContainer {
    position: absolute;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    top: 15%;
}

#logo {
    margin-bottom: 24px;
    width: 18vh;
    height: 18vh;
}

#logo img {
    width: 100%;
    height: 100%;
}

#title {
    font-family: rliTitle, sans-serif;
    color: white;
    font-size: 4em;
    text-align: center;
    margin: 20px 0 50px 0;
}

.text {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    font-size: 1.35em;
    text-align: center;
    margin: 0 25vw 20px 25vw;
    color: rgb(200,200,200);
    line-height: 1.5em;
}

#signature {
    margin: 30px 0 200px;
}

@media (min-height: 1020px) and (min-width: 1280px) {
    #flexContainer {
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    
    #signature {
        margin: 30px 0 0 0;
    }
}

@media (max-width: 1280px) {
    .text {
        margin: 0 18vw 20px 18vw;
    }
}

@media (max-width: 450px) {
    #title {
        font-family: rliTitle, sans-serif;
        color: white;
        font-size: 2.5em;
        text-align: center;
        margin: 20px 0 50px 0;
    }
    .text {
        margin: 0 13vw 20px 13vw;
    }
}