@font-face {
  font-family:Luminari;
  src: url("https://alexanderflame.neocities.org/Fonts/Luminari-Regular.ttf");
  }
* {
  box-sizing: border-box;
}

/* Add a gray background color with some padding */
body {
  font-family: Arial;
background: #020024;
background: linear-gradient(0deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 51%);
}

/* Header/Blog Title */
.header {
  padding: 30px;
  border-radius:10px;
  font-size: 40px;
  font-family:Luminari;
  text-align: center;
  background: linear-gradient(180deg,#ff6600,#6e06f2)
}

.leftcolumn {
   float: left;
  width: 17%;
  padding-right:15px;
}
.centercolumn {
  float: left;
  width: 58%;
  }
.Whitebox{
     background-color: white;
   padding: 20px;
   margin-top: 10px;
    border-radius:1em;
    border:1px solid black;
  }
.rightcolumn{
  float: right;
  width: 25%;
  padding-left: 15px;
  }
.Rightbox{
     background-color: white;
   padding: 20px;
    border:1px solid black;
}

.nav {
  background: linear-gradient(45deg,#ff6600,#6e06f2);
 
  background-size: cover;
  
  border-style: double;
  border-color: #090979;
  border-width: 1px;
  border-radius:5px;
  
 display: flex;
  justify-content: center;
  align-items: center;
  
  font-size: 20px;
  color: #2e9fe0;
  text-decoration: none;
}
.nav:hover {
  background-color: #ffe2f1;
  border-color: #B0726A;
  color: #B0726A;
}
.navbox{
   background-color: powderblue;
   padding: 20px;
   margin-top: 20px;
    border-radius:1em 1em 0px 0px;
    border:1px solid black;
  }
.Decobox{
  background-color: powderblue;
  padding: 15px;
  border-radius:0px 0px 1em 1em;
  text-align: center;
  border:1px solid black;
  border-top:0px;
  }
.overflowTest {
  background: black;
  color: #04AA6D;
  text-align: left;
  padding: 10px;
  width: 100%;
  height: 150px;
  overflow: scroll;
  border: 1px solid black;
  border-radius:5px;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: black;
  margin-top: 20px;
  color:powderblue;
}
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn,.centercolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top:56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}