.splash{
  position : fixed;
  width : calc(100% - 100px);
  height: calc(100% - 100px);
  transition : all ease-in-out 600ms;
  z-index: 11;
  margin: 50px 50px 50px 50px;
  font-size: 0.85rem;
  padding: 50px;
  box-sizing: border-box;
  line-height: 1.5rem;
  border-radius: 2px;
  background: rgba(12, 36, 16, 0.9);
  color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  text-align: center;
}

@media only screen and (max-width: 1300px) {
  .splash{
      width : calc(100% - 20px);
      margin: 10px 10px 10px 10px;
      height: calc(100% - 20px);
      padding: 10px;
  }
}

.splash-content{
  height: calc(100% - 80px);
  overflow-y: scroll;
  margin: 0px 250px;
}

@media only screen and (max-width: 1300px) {
  .splash-content{
    height: calc(100% - 80px);
    overflow-y: scroll;
    margin: 0px 20px;
  }
}

.splash-content::-webkit-scrollbar {
  height: 0px;
  display: none;
}

.splash-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.1);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.1);
}

.splash-content::-webkit-scrollbar-thumb {
  background-color: white;
  outline: 0.1px solid white;
}

.splash-logo{
  display: block;
  margin: 50px 0px 50px 0px;
}

.splash-logo img{
  width: 30%;
}

@media only screen and (max-width: 1300px) {
  .splash-logo img{
    width: 80%;
  }
}

.splash-large-text{
  display: inline-block;
  text-align: left;
  font-size: 0.85rem;
  font-weight: bold;
}

@media only screen and (max-width: 1300px) {
  .splash-large-text{
    font-size: 0.85rem;
  }
}

.splash-text{
  display: inline-block;
  text-align: left;
  font-size: 0.85rem;
}

@media only screen and (max-width: 1300px) {
  .splash-text{
    font-size: 0.85rem;
  }
}

.splash-close-button{
  display: block;
  position: absolute;
  background: grey;
  width: 50px;
  height: 50px;
  float: right;
  color: white;
  margin: -75px 0px 0px -75px;
}

.splash-closeButton{
  display: inline-flex;
  cursor: pointer;
  background: #105c2f;
  height: 30px;
  margin: 20px 0px 20px 0px;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  bottom: 0;
  padding: 5px 15px;
  color: white;
  border-radius: 2px;
}

@media only screen and (max-width: 1300px) {
  .splash-closeButton{
    display: inline-flex;
    cursor: pointer;
    width: calc(100% - 30px);
    justify-content: center;
    align-items: center;
  }
}

.splash-title{
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  margin: 10px 0px 10px 0px;
}

@media only screen and (max-width: 1000px) {
  .splash-title{
      font-size: 0.85rem;
  }
}

.hidden{
  transition : 0.5s;
  display : none;
}

.show{
  transition : 0.5s;
  opacity: 1;
}

.splash-header {
  height : 100%;
  color : white;
  font-family : consolas;
  font-size: 0.85rem;
  display : flex;
  justify-content: center;
  align-items : center;
}

.splash-header img {
  height : auto;
  width: 15%;
  margin: 0px 10px 0px 10px;
}

@media only screen and (max-width: 1300px) {
  .splash-header img{
      width: 30%;
  }
}