
.aros-button_snow {
  background-color: rgba(0, 112, 240, 0.856);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  width: 80%; /* Set width to 80% */
	height: 80px; /* Adjust the height value as needed */
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
  border-radius: 30px; /* Adds roundness */
  font-size: 40px; /* Increases font size */
  line-height: 1.5; /* Adjust line height as needed */
  text-align: center; /* Centers the text horizontally */
  white-space: nowrap; /* Prevents the text from wrapping to multiple lines */
  overflow: hidden; /* Hides any overflowed text */
  display: block; /* Converts the button into a block-level element */
	font-family: 'NanumGothicCodingBold';
	margin-left: auto;
  margin-right: auto;
}

.aros-button_snow:hover {
  background-color: rgb(62, 136, 185);
  transform: scale(1.1);
}

.aros-button_snow.most-likely-to-click {
  padding: 20px 30px; /* Increase padding to make the button bigger */
  font-size: 50px; /* Increase font size for the most likely to click button */
}
