html, body{
  text-align: center;
  position: relative;
  background-color: black;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

*{
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}

input, textarea{
  width: 100%;
  color: black;
}

textarea{
  width: calc(100% - 6px);
  max-width: calc(100% - 6px);
  max-height: 300px;
}

input[type="text"], input[type="email"]{
  width: calc(100% - 8px);
}

h1{
  margin-top: 0px;
  font-size: calc(2vw + 30px);
}

h2{
  font-size: calc(1vw + 30px);
}

p, a, input, textarea{
  font-size: calc(.5vw + 20px);
}

a{
  cursor: pointer;
  text-decoration: none;
}

ul, ol{
  padding: 0;
  margin: 0;
  list-style: none;
}

div.main_body{
  margin-top: 100px;
  position: relative;
  display: inline-block;
  max-width: 1000px;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 20px;
  transition: transform 1s;
  text-align: center;
}

p.inline_text{
  display: inline;
}

.header_bar{
  max-width: 1000px;
  font-size: 30px;
  padding: 0;
  margin: 0;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  z-index: 1;
  position: fixed;
  display: inline-block;
  background-color: black;
}

.header_bar_right{
  background-color: black;
  float: right;
}

.mobile_nav li{
  margin: 50px 20px 20px 20px;
}

.mobile_nav li a{
  font-size: 30px;
}

.header_bar li{
  color: white;
  float: left;
  margin: 20px 20px 20px 0px;
  display: block;
}

.header_bar li:last-child{
  margin-right: 0px;
}

.header_bar li a{
  font-size: 30px;
}

.full_screen{
  position: relative;
  float: left;
  width: 100%;
  height: 100vh;
}

.container{
  text-align: left;
  display: block;
  margin: auto;
  max-width: 800px;
  width: 80%;
}

li.toggle_menu{
  color: white;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: none;
}

.mobile_nav{
  top: 50px;
  text-align: left;
  background-color: black;
  color: white;
  width: 100%;
  position: fixed;
  transform: translateX(100%);
  height: 100vh;
  transition: transform 1s;
}

div.smaller_div{
  margin: auto;
  width: 70%;
}

.circle_image{
  width: 70%;
  max-width: 400px;
  max-height: 400px;
  border-radius: 50%;
}

.left_side, .right_side{
  float: left;
  padding: 10px;
  margin: 0;
}

.left_side{
  width: calc(40% - 20px);
}

.right_side{
  width: calc(60% - 20px);
}

@media only screen and (max-width: 600px) {
  .container{
    width: 100%;
    padding: 0px;
  }

  .header_bar_right{
    display: none;
  }

  .header_bar li{
    margin: 20px 20px 20px 20px;
  }

  .mobile_nav{
    display: block;
  }

  li.toggle_menu{
    display: inline-block;
  }
}

@media only screen and (max-width: 1000px){
  .left_side, .right_side{
    padding: 0px;
    width: 100%;
  }
}
