body{
	font-family : "Pretendard Variable", sans-serif;
	font-size: 10px;

	word-break: keep-all;    
    text-align: center;

    background-color: #0386FF;
}

button{
    background-color: #0386FF;
    color: #0386FF;
    border-color: #0386FF;
    border-radius: 15px;
    height: 80px;
    width: 250px;
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 16px;

    font-weight: bold;
    font-weight: 700;

    box-shadow: 5px 10px darkblue;
}
button:hover {
      background-color:#0386FF;
      color: white;
      transition: 0.7s;
  }

button:active{
    box-shadow: 0 4px 0 darkblue;
    transform: translateY(10px);
}

.button1{
    background-color: #0386FF;
    color: white;
    border-color: #0386FF;
    border-radius: 15px;
    min-height: 80px;
    min-width: 250px;
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 20px;

    font-weight: bold;
    font-weight: 700;
}
.button1:hover {
      background-color:#0386FF;
      color: white;
      transition: 0.7s;
  }

.button1:active {
    box-shadow: 0 4px 0 darkblue;
    transform: translateY(15px);
}