
.font {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.headerfont{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.background{
    background-color: #9200D1;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow-y:scroll;
    overflow-x: hidden;
    z-index: -1; 
}

.header{
    display: flex;
    width: 100%;
    background-color: rgb(36, 36, 36);
    color: rgb(255, 255, 255);
    justify-content: center;
    padding: 10px;
    padding-left: 12px;
    padding-top: 1%;
    font-size: 50px;
    min-height: 10%;  
}

.stuffgohere{
    min-height: 80%;
}

.content-area{
    display: block;
    background-color: #9200D1;
    padding-top: 30px;
    padding-bottom: 30px;
}

.content-box{
    padding-top: 27px;
    padding-bottom: 27px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    background-color: white;
    border-radius: 15px;
    overflow: auto;
}   

.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 2px;
    grid-row-gap: 40px;
}
    
.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 2 / 1 / 3 / 2; }
.div4 { grid-area: 2 / 2 / 3 / 3; }

.container {
    position: relative;
    text-align: center;
}
.imgtext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
}
.imgeffect{
    filter:brightness(50%);
    border-radius: 10px;
}


.footer{
    position: relative;
    bottom: 0;
    text-align: center;
    background-color: rgb(35, 35, 35);
    font-size: 15px;
    width: 100%;
    color: white;
    padding-top: 15px;
    min-height: 5%;
    z-index: 1;
}

.footertext{
    color: rgb(153, 153, 153);
    font-size: 10px;
    padding-bottom: 1%;
}