@font-face {
  font-family: 'Smooth Cheese';
  src: url('./font/smooth-cheese.otf');
}

.main-font{
  font-family: 'Smooth Cheese';
}

html{
  background-color: #4D6FEB;
}

body{
  background-color: #4D6FEB;
  font-family: 'Smooth Cheese';
}

#section-1 {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 0px,
    rgba(255, 255, 255, 0.15) 12px,
    transparent 1px,
    transparent 32px
  );
  background-size: cover;
  padding-top: 120px;
  border-bottom-left-radius: 180px;
  border-bottom-right-radius: 180px;
}

#section-4{
    background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 0px,
    rgba(255, 255, 255, 0.15) 12px,
    transparent 1px,
    transparent 32px
  );
}

.main-button{
  font-family: 'Smooth Cheese';
  font-weight: 400;
  font-size: 30px;
  background-color: #4D6FEB;
  color: white;
  padding: 6px 22px;
  border-radius: 999px;
  text-align: center;
  border: 2px solid #000400;
  box-shadow: 0px 3px 0px 1px #000400;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.main-button:hover,
.main-button:focus,
.main-button:active{
  background-color: #4e66c7;
  transform: translateY(4px);
  box-shadow: 0px 1px 0px 1px #000400;
  transition: all 0.2s ease-in-out;
}

.main-button.btn-white{
  background-color: #dd913f;
  color: white;
}

.main-button.btn-white:hover{
  background-color: #d38a3c;
}

.img-item{
  box-shadow: 0px 4px 0px 1px #000400;
}

@media screen and (max-width: 768px) {
  #section-1{
    border-bottom-left-radius: 90px;
    border-bottom-right-radius: 90px;
  }
}

@media screen and (max-width: 480px) {
  #section-1{
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }
}
