body {
  margin: 0px;
  padding: 0px;
  background-color: #ff8a00;
  font-family: "Nunito", sans-serif;
}
/* For Navbar */
nav {
  background: #000000;
  color: #EBEBD3;
  padding: 1em 0;
  position: relative;
}

nav::after {
  content: '';
  clear: both;
  display: table;
}

.nav-container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

.logo {
  font-family: "Nunito", sans-serif;
  float: left;
  font-size: 1.2em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: lighter;
}

.nav-container > a{
  color: #EBEBD3;
}

.logo span {
  font-weight: 300;
  color: #EBEBD3;
}

.site-nav {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  right: 0;
  background: #000000;
  height: 0px;
  overflow: hidden;
}

.site-nav--open {
  height: auto;
}

.site-nav li {
  border-bottom: 1px solid #575766;
}

.site-nav li:last-child {
  border-bottom: none;
}

.site-nav a {
  color: #EBEBD3;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 2em 6em 2em 2em;
}

.site-nav a:hover,
.site-nav a:focus {
  background: #e4b363;
  color: #464655
}

.menu-toggle {
  padding: 1em;
  position: absolute;
  top: .5em;
  right: 1em;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after{
  content: '';
  display: block;
  background: #ebebd3;
  height: 2px;
  width: 25px;
  /* border-radius: 3px; */
  transition: all ease-in-out 500ms;
}

.hamburger::before {
  transform: translatey(-7px);
}

.hamburger::after {
  transform: translatey(4px);
}

.open .hamburger {
  transform: rotate(45deg);
}

.open .hamburger::before {
  opacity: 0;
}

.open .hamburger::after {
  transform: translatey(-3px) rotate(-90deg);
}

@media (min-width: 700px) {
  
  .menu-toggle {
    display: none;
  }
  
  .site-nav {
    height: auto;
    position: relative;
    background: transparent;
    float: right;
  }

  .site-nav .nactive{
    color: #ff9d00;
  }
  
  .site-nav li {
    display: inline-block;
    border: none;
  }
  
  .site-nav a {
    padding: 0;
    margin-left: 3em;
  }
  
  .site-nav a:hover,
  .site-nav a:focus {
    background: transparent;
  }
  
  .site-nav--icon {
    display: none;
  }
  
}
/* End Navbar */

.container {
  height: 100vh;
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0px auto;
  align-items: center;
  justify-content: center;
}

.left,
.right {
  height: 100vh;
  width: 35vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right {
  align-items: center;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin: 0px;
  /* display:block; */
  font-size: 35px;
  line-height: 40px;
  color: aliceblue;
}

.left > a {
  text-align: center;
  width: 50px;
  text-decoration: none;
  color: #000000;
  font-size: 15px;
  padding: 7px 20px;
  border-radius: 50vh;
  background-color: aliceblue;
  margin-top: 20px;
  transition: ease 250ms;
}

.left > a:hover{
  background-color: #000000;
  color: #ebebd3;
  padding: 7px 30px;
  border-radius: 5px;
}

img {
  height: 400px;
  width: 400px;
  border-radius: 15px;
}

span{
  color: #000000;
  font-family: "Nunito", sans-serif;
}

@media (max-width: 800px) {
  .container {
    flex-direction: column;
  }
  .left,
  .right {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  a{
    margin: 0px auto;
    margin-top: 20px;
  }

  .right{
    display: none;
  }

  img{
    display: none;
  }
}
