* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.app {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.content {
  position: relative;
  width: 30%;
  border-radius: 60.8px;
  background: linear-gradient(180deg, #002F0B 0%, #006719 100%);
  box-shadow: 0px 4px 36.1px 6px rgba(0, 0, 0, 0.15);
  padding: 30px;
}

.title {
  border-radius: 82px;
  background: #FED304;
  padding: 10px 0;
}

.calculate {
  padding-top: 15px;
}

.title,
.calculate {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: bolder;
}

.calculate {
  font-size: 6rem;
}

input {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 50px;
  font-size: 1.3rem;
  outline: none;
}

.input {
  margin: 20px 0;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5% 10%;
}

@keyframes scaleAnimation {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.btn a img {
  animation: scaleAnimation 1.5s infinite ease-in-out;
}

@media screen and (max-width: 768px) {
  .app {
    /* background: url(./images/bg-mb.webp); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .content {
    position: relative;
    width: 90%;

  }

  .title,
  .calculate {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bolder;
  }

  input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
  }
}