/*website body style*/
body {
  margin: 0;
  padding: 0;
  
}
/*website container style (div)*/
.container {
  position: absolute;
  top: 50%;  
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 80%;
  padding: 20px;
  box-sizing: border-box;
  border: 0px solid transparent;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/*website button style (button)*/
.button {
  margin-top: 100px;
  font-family: Arial;
  font-style: normal;
  font-weight: 700;
  font-size:30px;
  width: 300px;
  height: 80px;
  border-radius: 10px;
  border: 2px solid white;
  color:#3C4343;
  background-color: #FFFFFF;
  
}
/*button animation*/
.button:hover {
  background-color: #CACECD;
  border: 2px #CACECD;
}
.button:active {
  background-color: #FFFFFF;
  border: 2px solid white;
  outline: none;
}
/*content style; text alignment*/
.child {
    font-family: Arial;
    text-align: left;
    white-space: nowrap;
}
/*website prompt style*/
.prompt {
    font-family: Arial;
    color: #3C4343;
    font-size: 65px;
    font-weight: 700;
    white-space: nowrap;
}
.hyphen {
  font-family: Arial;
  color: #3C4343;
  font-size: 65px;
  font-weight: 700;
  white-space: nowrap;
}
.in {
  font-family: Arial;
  color:  #FFFFFF;
  font-size: 65px;
  font-weight: 700;
}
/*website quesiton style*/
.target {
    font-family: Arial;
    color: #FFFFFF;
    font-size: 65px;
    font-weight: 700;
    white-space: nowrap;
}
/*adapt to different screen size*/
@media screen and (max-width: 1440px) {
  .container {
    position: absolute;
    top: 50%;  
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 80%;
    padding: 20px;
    box-sizing: border-box;
    border: 0px solid transparent;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  /*content style; text alignment*/
  .child {
    font-family: Arial;
    text-align: left;
    white-space: nowrap;
  }
  /*website prompt style*/
  .prompt {
    font-family: Arial;
    color: #3C4343;
    font-size: 58px;
    font-weight: 700;
    white-space: nowrap;
  }
  .hyphen {
  font-family: Arial;
  color: #3C4343;
  font-size: 58px;
  font-weight: 700;
  white-space: nowrap;
  }
  .in {
  font-family: Arial;
  color:  #FFFFFF;
  font-size: 58px;
  font-weight: 700;
  }
  /*website quesiton style*/
  .target {
    font-family: Arial;
    color: #FFFFFF;
    font-size: 58px;
    font-weight: 700;
    white-space: nowrap;
  }
  .button {
    margin-top: 65px;
    font-family: Arial;
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    width: 250px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid white;
    background-color: #FFFFFF;
    
  }
}
