@charset "utf-8";
/* CSS Document */
* {
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
	color: white;
}

.container {
        display: flex;
        align-items: center;
        justify-content: center;
		padding-bottom: 250px;
      }
img {
        max-width: 70%;
		display: block;
 	 	margin-left: auto;
  		margin-right: auto;
      }
.text {
        font-size: 15px;
        padding-left: 20px;
        padding-right: 50px;
      }
#wrap {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    background-color: white;
    padding: 10px;
}

.center-text {
  text-align: center;
  padding: 30px 0px 30px 0px;
}

#html {
    height: 100%;
    overflow-y: scroll;
    background: url("bg.jpg") no-repeat center center fixed;
    background-size: cover;
}

body {
    background-image: url("bg.jpg");
}

h5 {
	font-size: 12px;
}

.botnav {
  text-align: center;
  display: inline-block;
  background-color: #333;
  overflow: hidden;
  bottom: 0;
  position: fixed;
  width: 100%;
  margin: 0 auto;
}

/* Style the links inside the navigation bar */
.botnav a {
  font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
  display: inline-block;
  text-align: center;
  color: #818181;
  padding: 14px 24px;
  text-decoration: none;
  font-size: 18px;
}

/* Change the color of links on hover */
.botnav a:hover {
  background-color: #4160FF;
  color: black;
}

/* Hide the link that should open and close the topnav on small screens */
.botnav b  .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .botnav a:not(:first-child) {display: none;}
  .botnav 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) {
  .botnav.responsive {position: relative;}
  .botnav.responsive a.icon {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .botnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}