*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #080c35;
    
}
header{
    background-color: #30356e;
padding: 40px;
}
nav>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    list-style-type: none;
    font-size: 0.85rem;
    font-weight: bolder;
    justify-content: space-between;

}

nav {
    display: none;
  }
  nav ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
  
}
nav ul li{
    display: grid;
    margin-right: 30px;
    text-align: center;  
}
a{
    color:#ffff;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: bolder;
    transition: color 0.3s ease-in;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color:rgb(255, 238, 141)
}
h1{
    color: #ffff;
    font-size: 5rem;
    font-family: 'IBM Plex Mono', monospace;
    text-align: center;
    padding-top: 45px;
    padding-bottom: 10px;
}
h2{
    color: #ffff;
    font-size: 3rem;
    font-family: 'IBM Plex Mono', monospace;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}
iframe{
    display: block;
    margin: 0 auto;
    padding: 20px;
}
p{
    color: rgb(255, 238, 141);
    font-family: "Shadows Into Light", cursive;
    font-size: 2.25rem;
    padding: 25px;
    text-align: center;
}
  .material-symbols-outlined{
      color:rgb(255, 238, 141);
          display: block;
          position: absolute;
          right: 20px;
          top: 20px;
          font-size: 50px;
    }
#head p{
    color: rgb(255, 238, 141);
    font-family: "Shadows Into Light", cursive;
    font-size: 4.5rem;
    padding: 10px;
padding-top: 80px;
}
#head{
      display: grid;
    grid-template-columns: 1fr 1fr;
}
.column {
  float: left;
  width: 25%;
  padding: 10px;
}
img
{
    width: 75%;

    display: grid;
    padding: 20px;
}
.row::after {
  content: "";
  clear: both;
  display: table;
}
#Intro p {
color: rgb(255, 238, 141);
font-family: "Shadows Into Light", cursive;
font-size: 2rem;
padding: 20px;
text-align: center;
margin: 20px;
}

#signoff p{
    color: rgb(255, 238, 141);
    font-family: "Shadows Into Light", cursive;
    font-size: 1.5rem;
    padding: 20px;
    text-align: center;
}
footer{
    background-color: #30356e;
    padding: 20px;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
@media screen and (max-width: 768px) {

}