@import url('https://fonts.googleapis.com/css?family=Roboto');

body{
  display: flex;
 align-content: center;
 justify-content: center;
 align-items: center;
 height: 100%;
 margin: 0;
 background-color: #311B92;
}

.css-style {
  display: flex;
  width: 90%;
}


  .css-style textarea {
    font-size: 20px;
    padding: 0;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    overflow: auto;
    background-color: black;
    font-family: 'Roboto', sans-serif;
}

.css-pandas {
  display: flex;
  width: 95%;
  margin-top: 5%;
}

.left-side{
  width: 50%;
  background-color: #69F0AE;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
  .left-side .directions{
    width: 95%;
    margin-left: 20px;
    font-size: 20px;
    margin-top: 50px;
    font-family: 'Roboto', sans-serif;
  }



.nav-bar-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding-top: 20px;
  margin-left: 10px;
  border-radius: 5px;
}
  .nav-bar-header h3{
    margin: 10px;
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
  }

.nav-buttons{
  display: flex;
}
  .nav-buttons .prev-level-button{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 10px;
    border: none;
    height: 30px;
  }
  .nav-buttons .next-level-button{
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    padding-right: 10px;
    border: none;
  }
  .nav-buttons .level-number{
    background-color: #FAFAFA;
    padding: 0 10px;
    font-size: 15px;
    line-height: 30px;
    font-family: 'Roboto', sans-serif;
  }

.code-editor-container{
  width: 93%;
  font-size: 20px;
  height: 290px;
  border-radius: 5px;
  margin-left: 30px;
  margin-bottom: 20px;
  background-color: #BDBDBD;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-family: 'Roboto', sans-serif;
}


.code-editor-header{
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 10%;
  background-color: #9E9E9E;
  padding-left: 5px;
  border-radius: 5px;
}

.post-editor-header{
  display: flex;
  justify-content: space-between;
  background-color: #BDBDBD;
  border-radius: 5px;
}

.code-editor-lines{
  width: 25px;
  height: 100%;
  text-align: right;
  padding-right: 7px;
  color: black;
  background-color: #9E9E9E;
  margin-bottom: 32px;
}

.code-editor{
  width: 92%;
  padding: 10px;
  border-radius: 5px;
}

.css-input{
  width: 100%;
  padding-left: 5px;
}
  .css-input textarea{
    font-size: 20px;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    overflow: auto;
    background-color: #FAFAFA;
    height: 50px;
    border-radius: 5px;
  }

.post-css-input{
  margin-top: -0px;
  margin-left: 5px;
}
  .finish-level-button{
    float: right;
    border-radius: 5px;
  }
  .post-css-input .finish-level-button:enabled{
    background-color: white;
  }

.right-side{
  box-sizing: border-box;
  width: 50%;
  height: 800px;
  padding: 10px;
  position: relative;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #4DD0E1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
  .right-side .frame{
    padding: 0 10px;
    display: flex;
    height: 80%;
    width: 90%;
  }

  .animal{
    position: relative;
    height: 130px;
    width: 75px;
    left: -40px;
    top: 70px;
    z-index: 1;
  }

  .bedsvg{
    position: relative;
    top: 20px;
    height: 300px;
    left: 250px;
  }

.html-editor-container{
  width: 93%;
  font-size: 20px;
  height: 400px;
  border-radius: 5px;
  margin-left: 30px;
  margin-bottom: 20px;
  background-color: #BDBDBD;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-family: 'Roboto', sans-serif;
}

.html-editor-header{
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 10%;
  background-color: #9E9E9E;
  padding-left: 5px;
  border-radius: 5px;
}

.post-html-header{
  display: flex;
  justify-content: space-between;
  background-color: #BDBDBD;
  border-radius: 5px;
}

.html-editor-lines{
  width: 25px;
  height: 100%;
  text-align: right;
  padding-right: 7px;
  color: black;
  background-color: #9E9E9E;
  margin-bottom: 30px;
}

.html-editor{
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  margin-left: 35px;
}

.nested-animal{
  position: relative;
  height: 130px;
  width: 50px;
  left: -180px;
  top: 75px;
  z-index: 2;
}
