@font-face{
font-family:"daydream";
src: url("/fontfolder/daydream.otf");
}

.everything{
    width: 900px;
    height: 100%;
    margin: auto;
}
.header{
    width: 100%;
    height: 200px;
    background-image: url("/bannerbg.jpeg");
    background-size: cover;
    display: grid;
    justify-content: center;
    align-items: center;
    font-family: daydream;
    font-size: 24pt;
}
.header a{
    color: #000000;
}
.header a:hover{
    color: #94BCFF;
    font-size: 30pt;
}
.bottombox{
    width: 895px;
    height: 700px;
    display: flex;
}
.sidebar{
    width: 200px;
    height: 100%;
    background-color: rgba(102, 183, 255, 0.4);
}
.sbnav{
    display: block;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 1rem 0rem 0rem 0rem;
}
.sbnav h1{
    font-family: helvetica;
    font-weight: bold;
    font-size: 20pt;
    text-align: center;
}
.sbnav img{
    width: 35%;
    height: auto;
    margin: auto;
}
.sbnav p{
    margin: auto;
    font-family: helvetica;
    font-weight: bold;
    padding: 0rem 0rem 2rem 0rem;
}
.sbnav a{
    display: block;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 0;
    text-decoration: none;
    color: black;
}
.sbnav a:hover{
    color: #FF2E8C;
}
.contentbox{
    width: 100%;
    height: 100%;
    border: 5px solid rgba(102, 183, 255, 0.4);
}
.contentbody{
    padding: 0rem 1rem 0rem 1rem;
    background-color: #B866FF;
}