@font-face{
    src: url(fonts/Syncopate-Bold.ttf);
    font-family: Syncopate-Bold;
}

@font-face{
    src: url(fonts/Syncopate-Regular.ttf);
    font-family: Syncopate-Regular;
}

body {
  background-color: white;
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: #041E42;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    color: #FCB514;
    font-family: Syncopate-Bold;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
    /* Right-aligned section inside the top navigation */
.topnav-right {
  text-align: right;
}

  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #FCB514;
    color: #041E42;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #FCB514;
    color: #041E42;
  }

  h1{
    font-family: Syncopate-Bold;
    color: #041E42;
  }

   /* Style center */
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  .button {
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
  }
  
  .button1 {
    background-color: white;
    color: black;
    border: 2px solid #FCB514;
  }
  
  .button1:hover {
    background-color: #FCB514;
    color: white;
  }
  
  .button2 {
    background-color: white;
    color: black;
    border: 2px solid #041E42;
  }
  
  .button2:hover {
    background-color: #041E42;
    color: white;
  }

