* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  color: #222;
}

/* typography */

h1 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
}

h2 {
  margin-top: 0;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

p {
  font-size: 18px;
  line-height: 28px;
}

ul {
  list-style: none;
  padding: 5px 0 0 0;
}

li {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 22px;
}

.li-green {
  background-color: #e5fdea;
}
.li-yellow {
  background-color: #fcfdd6;
}
.li-blue {
  background-color: #e5f9fe;
}
.li-pink {
  background-color: #fcf1fe;
}

/* layout */

img {
  width: 100%;
}

main {
  width: 400px;
  margin: 0 auto;
}

/* modal */

.modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  height: 529px;
  width: 369px;
  border-radius: 5px;
  box-shadow: 0px 0px 6px 2px #666;
  background-color: #212529;
  color: whitesmoke;
}

.modal-inner {
  width: 290px;
  margin: 0 auto;
}

.modal-inner-loading {
  text-align: center;
}

/* modal buttons */

.close-modal-btn-container {
  text-align: right;
  margin: 10px;
}

.modal-close-btn {
  font-size: 22px;
  font-weight: bold;
  background-color: transparent;
  border: 1px solid transparent;
  color: whitesmoke;
}

.modal-close-btn:hover,
.modal-close-btn:active {
  color: red;
  cursor: pointer;
}

.modal-close-btn:disabled {
  color: whitesmoke;
  opacity: 0.2;
  cursor: not-allowed;
}

/* // reverse */

.reverse {
  flex-direction: row-reverse;
}

.modal-choice-btns {
  margin-top: 12px;
  padding: 10px 16px;
  gap: 12px;
  display: flex;
  justify-content: center;
}

.modal-btn {
    border-radius: 12px;
    font-size: 15px;
  padding: 10px 24px;
  cursor: pointer;
}

.green {
    background-color: rgb(55, 175, 55);
    color: rgb(241, 227, 227);
    font-weight: 610;
}

.green:hover {
   border: none;
}

.red:hover {
    border: none;
 }

.red{
    background-color: red;
    color: rgb(241, 227, 227);
    font-weight: 650;
}
/* modal input */

input {
  margin-top: 10px;
  border: 1px solid #212529;
  padding: 10px;
  width: 100%;
  border-radius: 3px;
}

/* modal after submit */

.loading {
  width: 100%;
  margin-top: 10px;
}

.modal-display-name {
  color: fuchsia;
}

.modal-text {
  height: 140px;
  line-height: 23px;
  margin-bottom: 0;
}

/* suprise section */

/* 
.gift-section {
    margin-top: 50px;
  }
  
  .click {
    cursor: pointer;
  }
  
  .gift-hint {
    margin-top: 0;
  }
  
  .gift-title {
    margin-bottom: 10px;
  }
  
  .gift-cover-img-1 {
    background-image: url(images/gift-cover.jpg);
    background-size: cover;
    margin: 0 auto;
    height: 400px;
    width: 400px;
    border: 6px solid white;
    border-radius: 8px;
  }
  
  .gift-cover-img-1:hover {
    transition-delay:1s;
    background-image: url(images/happy.gif);
  } */
