
* {
    cursor: none;
}

body {
    font-family: var(--font-family-condensed);
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: transparent;
    font-size: 22px;
}


section {
    padding: 1% 2% 1.5% 2%;
    margin: 0;
    width: 96%;
    height: 96%;
    color: rgb(250,250,250);
    z-index: 30;
    overflow: hidden;
}
#information {
    margin: 0 10px 0 0;
}
#information, p {   

    padding: 0;
    margin: 0;
    font-size: 160%;    
    
}
    #information p {
        line-height: 1.25;
    }



.message-heading {
    font-size: .825em; 
    letter-spacing: 0px;
    line-height: 0.5em; 
    font-weight: 600; 
    text-transform: uppercase;
    color:  var(--secondary-color);
    color: rgba(255,255,255, 0.85);
    padding: 0;
    margin: 0;

}

.message-body{
    color: rgba(255,255,255, 0.65);
    font-size: .65em;
    font-weight: 300;    
    letter-spacing: 1px;
}


@media (min-width: 1000px){
    .message-heading {
        font-size: 1.25em;
        line-height: 0.5em;
    }

    .message-body {
        font-size: 1em;
        line-height: 0.5em;
    }
}

@media (min-width: 1500px) {
    .message-heading {
        font-size: 1.5em;
        line-height: 0.5em;
    }

    .message-body {
        font-size: 1.25em;
        line-height: 0.5em;
    }
}

.fade-in {animation: fadein 2s;}
.fade-out {animation: fadeout 2s;}

@keyframes fadein {
    from { opacity: 0.02;}
    to   { opacity: .98;}
}

@keyframes fadeout {
    from { opacity: .98; }
    to   { opacity: 0.02; }
}