@font-face {
  font-family: "TheSeasons";
  src: url("fonts/theseasons-itl.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "TheSeasons";
  src: url("fonts/theseasons-rg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@keyframes pulse {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
}

* {
  padding: 0;
  margin: 0;
  font-family: "TheSeasons";
}

body {
  border-top: 4px solid red;
      border-bottom: 4px solid red;
  width: 100vw;
  display: flex;
  background-image: url(https://bio.arosavermelhabh.com.br/images/bg-pc.png);
  background-size: auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 600px) {
  body {
    background-image: url(https://bio.arosavermelhabh.com.br/images/bg.png);
    background-size: 600px;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

main {
  padding: 20px 30px;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

.logo {
  width: 200px;
}

.logo-2 {
  width: 100px;
  animation: pulse 2s infinite linear;
}

h1 {
  margin-top: 45px;
  text-align: center;
  color: #000000;
  font-weight: 600;
  font-size: 30px;
}

#button-container {
  max-width: 400px;
  margin-top: 35px;
  width: 83%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 12px;
  font-weight: 600;
}

.btn {
  text-decoration: none;
  color: rgb(255, 255, 255);
  background-color: #fe2c28;
  padding: 12px 30px 12px 30px;
  font-size: 18px;
  width: 100%;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
  border: 1px solid;
  border-color: #fe2c28;
  transition: 0.7s;
}

.btn:hover {
  background-color: transparent;
  border: 1px solid;
  border-color: #fe2c28;
  color: #fe2c28;
}

b {
  color: #545454;
    font-style: italic;
    font-size: 60px;
    display: block;
    margin-top: 10;
    font-weight: 400;
}

span {
  display: block;
    background-color: #fe2c28;
    color: white;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 8px;
    margin-top: 2px !important;
    padding-bottom: 8px;
    border-radius: 20px;
    font-size: 23px;
}

a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon {
      width: 18px;
    margin-right: 3px;
}
