/* applicable to all */
*{
    margin: 0px;
    padding: 0px;
    user-select: none;
}
body{
    background: #1b1b1b url("../images/bg.png") no-repeat center center;
    background-size: cover;
    border: none;
    overflow-x: hidden;
}

/* parent of all elements, doesn't affect body */
.wrapper{
    width: 100vw;
    height: 100vh;
}

/* only for notice */
.notice{
    width: 100%;
    height: 0px;
    background-color: #3a3a3a;
}

/* navbar */
.menu{
    width: 100%;
    height: 75px;
    align-items: center;
    justify-content: center;
    background-color: #505050BF;
}

/* displays list items */
.list{
    padding-top: 0px;
    display: flex;
    list-style: none;
    text-align: center;
    justify-content: center;
}

/* any items of .list */
.list li{
    width: 100px;
    height: 75px;
    font-size: 14px;
    font-family: "Lato";
    line-height: 75px;
    text-align: center;
    background: #1b1b1b00;
    color: white;
    transition: background-color 0.3s ease-in-out;
}
.list a{
    text-decoration: none;
}
@font-face{
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/lato.woff2);
}


/* pseudo classes */
.list li:hover{
    cursor: pointer;
    background-color: #20202080;
    
}
.list li::selection{
    background: transparent;
}
.list li:not(:hover){
    text-decoration: none;
    background-color: transparent;
}

/* logos for returning to landing page */
.logo{
    height: 100%;
    display: inline-block;
    position: relative;
    top: -75px;
    left: 10px;
}
.logo img{
    display: block;
    width: 250px;
    height: 50px;
    object-fit: cover;
    position: relative;
    top: 10px;
}

#currentPage{
    background-color: #16499c80;
}

/* any titles or headers */
.title{
    padding-top: 30px;
    font-size: 35px;
    font-family: "Lato";
    line-height: 40px;
    text-align: center;
    user-select: none;
    background: #1b1b1b00;
    color: white;
    justify-content: center;
}

/* any paragraphs or captions */
.para{
   padding-top: 30px;
    font-size: 14px;
    font-family: "Lato";
    line-height: 40px;
    text-align: center;
    user-select: none;
    background: #1b1b1b00;
    color: white;
    justify-content: center; 
}
.paral{
    padding-top: 30px;
    font-size: 14px;
    font-family: "Lato";
    line-height: 40px;
    text-align: left;
    user-select: none;
    background: #1b1b1b00;
    color: white;
    justify-content: left; 
}
.parar{
    padding-top: 30px;
    font-size: 14px;
    font-family: "Lato";
    line-height: 40px;
    text-align: right;
    user-select: none;
    background: #1b1b1b00;
    color: white;
    justify-content: right; 
}
.hero{
    width: 100%;
    height: 700px;
}
.content{
    width: 100%;
    height: 1000px;
    background-color: white;
    color: black;
}
.content .title, .para{
    color: black;
}



