@import "reset.css";

@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-size: contain;
  background-position: center;
  background-repeat: repeat;


  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;

  /* select disable */
  -webkit-touch-callout: none;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}

.test_back{
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap; 
  align-content: flex-start;
  justify-content: center;
  align-items: center;
  
}

#back{
  width: 100%;
  color: #1B9373;
  margin-top: 20px;
  margin-bottom: 20px;
}

.test_info_title{
  font-family: 'SUITE-Bold';
  margin: 20px;
  font-size: 1.7rem;
  font-weight: 900;

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

.container{
  font-family: 'SUITE-Regular';
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1000px;
  color: white;


  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
  word-break: keep-all;
}


.division_bar{
  width: 100%;
  background-color: white;
  border-radius: 5px;
  height: 2px;
  margin: 20px;
  animation: fadein 1s;
  -moz-animation: fadein 1s; /* Firefox */
  -webkit-animation: fadein 1s; /* Safari and Chrome */
  -o-animation: fadein 1s; /* Opera */
}

.info_box{
  border: 1px solid white;
  border-radius: 15px;
  padding: 10px;
  line-height: 25px;
}

.que_info{
  margin: 10px;
  animation: fadein 1s;
  -moz-animation: fadein 1s; /* Firefox */
  -webkit-animation: fadein 1s; /* Safari and Chrome */
  -o-animation: fadein 1s; /* Opera */
}

.test_box{
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  animation: fadein 2s;
  -moz-animation: fadein 2s; /* Firefox */
  -webkit-animation: fadein 2s; /* Safari and Chrome */
  -o-animation: fadein 2s; /* Opera */
}

.que{
  font-size: 1.2rem;
  margin-top: 70px;
  margin-bottom : 20px;
}

.ans_li{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    justify-content: space-evenly;
}

.select{
    background-color: rgb(217, 227, 236);
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.ans_li li{
    display: flex;
    align-items: center;
    width: 80px;
    height: 40px;
    padding: 5px;
    border-radius: 5px;
    border-color: #D4D5D8;
    font-size: 1.2rem;

    cursor: pointer;
    transition: 0.5s;
}

.act{
  background-color: #1B9373;
  color: white;
}

span{
    margin-left: 10px;
}

.division{
  width: 100px;
}

.small{
  font-size: 1rem;
}

.middle{
  margin-top: 100px;
  text-align: center;
}

select{
  border: 2px solid #1B9373;
  border-radius: 5px;
  width: 120px;
  height: 50px;
  padding: 5px;
}


.result{
  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;
  background-color: #1B9373;
  box-shadow: 3px 3px 0 rgb(0, 0, 0, 0.3);
}

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