@font-face {
  font-family: 'SUITE-Regular';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@keyframes fadein {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
@-moz-keyframes fadein { /* Firefox */
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
@-o-keyframes fadein { /* Opera */
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

body{
  background-image: url(/static/img/background.png);
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  padding: 0;
  border: 0;
  overflow-x : hidden;
  overflow-y: scroll;
}

a{
  text-decoration: none;
}

.header{
  width: 100%;
  min-height: 137px;
}

.logo{
  position: inherit;
  width: 240.6px;
  height: 164.04px;
}

.ebs_div{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 55px;
  right: 42px;
}

.ebs{
  width: 72px;
  height: 23.4px;
}

.info{
  background-image: url(/static/img/background.png);
  position: fixed;
  color: #FF9B0B;
  margin-left: 40px;
  text-decoration: none;

  padding: 35px;
  border: 1px solid #FFFFFF;
  border-radius: 15px;

  bottom: 10px;
  right: 10px;

}

.container{
  background-image: url(/static/img/paper.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'SUITE-Regular';
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: space-evenly;
  width: 90%;
  max-width: 1000px;
  height: auto;
  min-height: 800px;
  color: #000000;
  
  padding: 8%;

  animation: fadein 1s;
  -moz-animation: fadein 1s; /* Firefox */
  -webkit-animation: fadein 1s; /* Safari and Chrome */
  -o-animation: fadein 1s; /* Opera */
  
}

.container_title{
  font-size: 2rem;
  font-weight: 700;
}

.division{
  width: 100%;
  background-color: #000000;
  border-radius: 5px;
  height: 2px;
  margin: 10px;
}

.content p{
  font-size: 1rem;
  word-break: keep-all;
}

.caution{
  font-family: 'SUITE-Bold';
  color: rgb(239, 37, 37);
  font-size: 0.8rem !important;
}

.content{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  animation: fadein 2s;
  -moz-animation: fadein 2s; /* Firefox */
  -webkit-animation: fadein 2s; /* Safari and Chrome */
  -o-animation: fadein 2s; /* Opera */
}

.start_button{
  margin: 5px;
  margin-top: 10px;
  width: 140px;
  height: 50px;
  min-height: 50px;
  color:white;
  font-size:0.8rem;
  font-weight: 500;
  border-radius: 10px;
  border:0;
  cursor: pointer;
  transition: 0.5s;

  
  animation: fadein 3s;
  -moz-animation: fadein 3s; /* Firefox */
  -webkit-animation: fadein 3s; /* Safari and Chrome */
  -o-animation: fadein 3s; /* Opera */
}

.buttons{
  display: flex;
}

.buttons a{
  text-decoration: none;
}

.start_button{
  display: block;
  box-shadow: 3px 3px 0 rgb(0, 0, 0, 0.3);
}

.start_button:active{
  box-shadow: inset 3px 3px 0 rgb(0, 0, 0, 0.3);
}

.link{
  margin-top: 10px;
  text-decoration: underline;
  color:#FF9B0B;
}

#ele{
  /* background-color: #FF9B0B; */
  background-color: #a7a7a7;
  cursor: default;
}

/* #ele:hover{
  color: #1B9373;
} */

#high{
  background-color: #1B9373;
}

#high:hover{
  color: #FF9B0B;
}


.fa-x{
  color: #FFFFFF;
  position: absolute;
  right: 15px;
  top:15px;
  cursor: pointer;
}