* {box-sizing: border-box;}

  .purplecolor{color:#351c75;}

body{
  margin: 0;
  padding: 0;
  background-image:  linear-gradient(#b28228,#351c75);
  min-height: 100vh; 
  display: flex;
  flex-direction: column;
    
}

#container {
  position:relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: white;
  background-color: black;
  text-align: center;
  height: 2.5rem;            /* Footer height */
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*
footer{
  margin-top: auto;
  Width:100%;
  position: fixed;
 bottom: 0;  
  color: white;
  background-color: black;
  text-align: center;
    padding: 5px;
    border-radius: 10px;
    
}
*/
.button {
    background-color: #000000;
    border: 2px solid;
    color: #b28228;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 10px;
  
  }
  
  .button:hover {
    background-color: #f1f1f1;
  }

 /* Style the navbar */
 .topnav {
   background-color: #040e17;
      
    overflow: hidden;
    border-radius: 10px;
      
  }
  
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Active/current link */
  .topnav a.active {
    background-color: #805BA5;
    color: white;
  }
 

  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  } 

  .topnav a.split{
    float: right;
    
  }

  .img-responsive {
    margin-top:15px;
    max-width: 100%;
    height: auto;
    padding: 5px;
    border: 5px solid;
    border-radius: 10%;
    
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }


/* Overwrite default styles of hr */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}

/* Add a blue text color to links */
a {
  color: #b28228;
}

  /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  } 

   
