@font-face {
  font-family: "monaspace";
  src: url("/fonts/MonaspaceNeon-Medium.otf") format("opentype");
  src: url("/fonts/MonaspaceNeon-Medium.woff") format("woff");
  src: url("/fonts/MonaspaceNeon-Medium.woff2") format("woff2");
}

body {
    background: #042559;
    background: linear-gradient(360deg,rgba(1, 19, 43, 1) 0%, rgba(4, 37, 89, 1) 34%, rgba(5, 55, 135, 1) 100%);
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    color: #fff2cc;
    font-family: "Aleo", "monaspace", "verdana", serif;
}

header {
  font-family: "Seaweed Script";
  font-size: 20px;
}

header > .flavor {
  font-family: "Seaweed Script";
  font-size: 14px;
  }


mark {
  background-color: #ff0000;
  color: black;
}



a {
  color: #fff2ac;
  }

.flavor {
        font-size: 14px;
        color: #68a3bd;
        font-family: "Seaweed Script";
  }
  
.flavor2 {
        font-size: 14px;
        color: #68a3bd;
        font-family: "Seaweed Script";
        line-height: 0.01;
        text-align: right;
  }

.line {
        text-align: left;
        text-indent: 50px;
        border-bottom: 1pt solid #FFFDF5;
        padding: 5pt 20pt;
        margin: 40px;
        font-family: "Aboreto";
        font-size: 18px;
    }

.footer {
        text-align: center;
        border-top: 1pt solid #FFFDF5;
        padding: 5pt 20pt;
        margin: 80px;
        font-size: 10px;
        color: #F0DCD5;
    }
    
  /* corners code for the table ripped from here https://stackoverflow.com/questions/4932181/rounded-table-corners-css-only and then edited to work */  
    
table {
  background-color: #38B3FF;
  background-image: linear-gradient(360deg,rgba(17, 84, 191, 1) 8%, rgba(56, 179, 255, 1) 81%, rgba(125, 205, 255, 1) 100%);
  background-attachment: fixed;
  border: 0px solid #FFFDF5;
  border-radius: 15px;
  margin: auto;
  border-collapse: separate;
  border-spacing: 0px;
}

td, tr {
  border: 2px dotted #FFFDF5;
  padding: 15px;
}

tr:first-of-type td:first-of-type {
  border-top-left-radius: 10px;
  border: 2px dotted #FFFDF5;
}

tr:first-of-type td:last-of-type {
  border-top-right-radius: 10px;
  border: 2px dotted #FFFDF5;
}

tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 10px;
  border: 2px dotted #FFFDF5;
}

tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 10px;
  border: 2px dotted #FFFDF5;
}


.box {
  background-color: #1154BF;
  min-width: 25%;
    max-height: 100%;
    border: 5px solid #1965E0;
    padding: 15pt;
    margin: 20pt 10% auto;
    overflow: hidden;
    border-radius: 15px 15px 15px 15px;
  
}

.box > div {
  width: 33%;
  float: left;
  margin: auto;
  padding: 25px;
    border: 1px solid #FFFDF5;
    border-width: 1pt;
    overflow: hidden;
    border-radius: 15px 15px 15px 15px;
}

.box > rightdiv {
  background: #000308;
background: linear-gradient(360deg, rgba(0, 3, 8, 1) 0%, rgba(2, 16, 36, 1) 26%, rgba(0, 28, 77, 1) 92%);
background-attachment: fixed;
  width: 50%;
  float: right;
  margin: 25px;
  padding: 25px;
    border: 1px solid #FFFDF5;
    border-width: 1pt;
    overflow: hidden;
    border-radius: 15px 15px 15px 15px;
}

.box2 {
  min-width: 25%;
    max-height: 100%;
    border: 1px solid #FFFDF5;
    border-style: solid solid hidden solid; 
    border-width: 1pt;
    padding: 15pt;
    margin: 20pt 10% auto;
    border-radius: 15px 50px;
}

.box3 {
  min-width: 25%;
    max-height: 100%;
    border: 1px solid #FFFDF5;
    border-style: hidden; 
    border-width: 1pt;
    padding: 15pt;
    margin: 20pt 10% auto;
    border-radius: 15px 50px;
}


@media screen and (max-width: 800px) {
  .box {
    width: 80%; /* The width is 100%, when the viewport is 800px or smaller */
    padding: 10pt;
    margin: auto;
  }
  .box > div {
    width: 85%; /* The width is 100%, when the viewport is 800px or smaller */
    margin: auto;
    max-height: 30%;
    font-size:3.5vw
  }
  .box > rightdiv {
    width: 85%; /* The width is 100%, when the viewport is 800px or smaller */
    margin: auto;
    max-height: 30%;
    font-size:3.5vw
  }
  table, th {
    border: 1px solid lightblue;
    border-collapse: collapse;
    padding: 10px 10px 10px 10px;
  }
   td {
    padding: 10px;
  }
  .line {
    text-indent: 0px;
    }
}


/* media and box + div codes copied from w3schools */




#contentBox {
    width: 100%;
    overflow: scroll;
}

#contentBox .column {
    float: left;
    width: 50%;
    
    margin: 5pt 20pt 5pt 20pt;
    
}

/* code for the content box and columns comes from here https://stackoverflow.com/questions/9966890/best-way-to-do-columns-in-html-css */

  
