body {
    background-color: #06315e;
}

.header {
    overflow: hidden;
    padding: 20px 10px;
    font-family: "coolvetica rg"
  }
  
  /* Style the header links */
  .header a {
    float: left;
    color: #ebeded;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
  }
  
  /* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
  .header a.logo {
    font-size: 25px;
  }
  
  /* Change the background color on mouse-over */
  .header a:hover {
    background-color: #1e65ae; /* #d6531f; */
    color: #ebeded;
  }
  
  /* Style the active/current link*/
  .header a.active {
    background-color: #ebeded;
    color: #06315e;
  }
  
  /* Float the link section to the right */
  .header-right {
    float: right;
  }
  
  /* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
  @media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    .header-right {
      float: none;
    }
  }

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 20%;
}

.text {
  text-align: center;
  color: #ebeded;
  font-size: 30px;
  font-family: "coolvetica rg"
}

.embed {
  text-align: center;
  color: #ebeded;
  font-size: 25px;
  font-family: "coolvetica rg"
}

.footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 3px;
    background-color: #06315e;
    color: #ebeded;
    font-family: "coolvetica rg"
}

@font-face {
    font-family: 'coolvetica rg';
    font-style: normal;
    src: url('../fonts/coolvetica-rg.otf');
  }