body{
    margin: 0;
    font-family:'Courier New', Courier, monospace;
    height: 200vh;
    background:linear-gradient(to left,#f6f8b8,#a6e3ff,#012535);
}

.header{
    background:linear-gradient(to bottom right, #012535, #a6e3ff,#f6f8b8 );
    text-align: center;
}
.start{
    border-radius: 60%;
    display: block;
    margin: auto;
    width: 50%;
    
}
.things{
    display: block;
    border: 10px solid #012535;
    background-color: #eaeff2;
    text-align: center;
    border-radius: 25px;
    font-size: larger;
}
/*This begings the nav bar which is a glass effect*/
    .glass-navbar {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 95%;
      max-width: 1000px;
      padding: 15px 30px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
      z-index: 1000;
    }

    .nav-logo {
      font-size: 1.5rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    }

    .nav-links a {
      margin: 0 15px;
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      text-shadow: 0 0 4px rgba{255, 255, 255, 0.2};
    }

    .nav-links a:hover {
      color: #e0e0e0;
      text-shadow: 0 0 8px #a6e3ff, 0 0 12px #a6e3ff;
    }

    main {
      margin-top: 140px;
      padding: 40px;
      color: white;
    }
   /* this ends the glass nav bar*/

   /*The layout of the wedsite for zig zag containers*/
   *{
    box-sizing: border-box;
   }

   /*begining of container*/
.container{
    padding: 64px;
}

.row:after{
    content: "";
    display: table;
    clear: both;
}

.column-33{
    float: left;
    width: 33.33%;
    padding: 20px;
}

.column-66{
    float: left;
    width: 66.66%;
    padding: 20px;
}

h1{
    font-size: 64px;
}

h2{
    font-size: 48px;
}

 .glass-btn {
      margin-top: 15px;
      padding: 10px 20px;
      border: none;
      background: rgba(255, 255, 255, 0.2);
      color: white;
      font-size: 16px;
      border-radius: 10px;
      cursor: pointer;
      backdrop-filter: blur(5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background 0.3s ease;
    }

    .glass-btn:hover {
      background: rgba(255, 255, 255, 0.3);
    }

img{
    display: block;
    height: auto;
    max-width: 100%;
}

@media screen and (max-width: 1000px){
    .column-66,
    .column-33 {
        width: 100%;
        text-align: center;
    }
    img{
        margin: auto;
    }
}

.footer{
  padding: 20px;
  text-align: center;
  background-color:#f7f8d0;
  color: #0c425a;
  margin-top: 20px;
}