body{
    background-color: black;
    color: rgb(255, 255, 255);
    font-family: 'cyberpunkwaifus';
}

.div{
    width: 100vw;
    height: 100vh;
}

.flex-container{
    display: flex;
    flex-direction: row;
    justify-content: center; /*align items horizontally*/
}

.titlebox{
    margin: auto;
    margin-bottom: 10px;
    width: 35%;
    border-style: solid;
    border-color: magenta;
    box-shadow: 0 0 10px magenta;
    border-width: 5px;
    border-radius: 5px;
    text-align: center;
    padding-left: 10px;
} 
.mainbox{
    margin: 20px 20px 20px 20px;
    width: 65%;
    border-style: solid;
    border-width: 5px;
    border-radius: 5px;
    border-color:magenta;
    box-shadow: 0 0 10px magenta;
    padding-left: 1%;
    background-color: black;
    color: white;
    padding: 10px;
    text-align: left;
}
bodytext{
    font-size: 150%;
    font-weight: normal;
    color: rgb(23, 223, 139);
}
img{
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

a{
    color:white;
    text-decoration: none;
}

a:hover{
    color: yellow;
    text-shadow: 0 0 3px yellow; 
}

.row{
    background: none;
    vertical-align: center;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
