h1, p {
  font-family: -apple-system, "Helvetica Neue", "Lucida Grande";
}

button {
  font-family: -apple-system-subheadline,  "Helvetica Neue", "Lucida Grande";
  cursor: pointer;
}

p {
  margin: 0;
  margin-bottom: 40px;
}

h1 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.solid-button {
  border-radius: 20px;
  background-color: #5151e4;
  color: white;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.24px;
  height: 42px;
  border: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(238, 238, 238);

  height: 100vh;
}

.top-content {
  flex: 1;
}

.content {
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("assets/web\ notice\ background.png");
  display: flex;
  height: 752px;
  width: 360px;
  background-color: #ccc;
  flex-direction: column;
  align-items: space-between;
}

.wrapper {
  display: flex;
}

.modal {
  display: flex;
  width: 100%;
  height: 336px;
  background-color: white;
  animation: fadeIn 1s, slideIn .8s linear;
  
  margin: auto;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0px 0px 30px #999;
}

.modal-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  margin: 0px 32px;
}

@keyframes slideIn {
  0% {
    transform: translateY(400px);
    animation-timing-function: ease-out;
  }
  60% {
    transform: translateY(-10px);
    animation-timing-function: ease-in;
  }
  80% {
    transform: translateY(10px);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0px);
    animation-timing-function: ease-in;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    body {
        margin: 0px;
    }
    .content {
      width: 100%;
      height: 100%;
    }
}