* {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

body {
  margin: 0;
  overflow-x: clip;
  background: #140919;
  width: 100vw;
  
  max-width: 600px;
  margin: 0 auto;
}

main {
  position: relative;
}
main::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 110%;
  margin-left: -5%;
  height: 100%;
  margin-top: -5px;
  background-image: url('/images/background.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(30px);
  z-index: -1;
}

.messages {
  position: relative;
  padding: 10px;
}
.messages__image--lamp {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(40%, -20%) scaleX(-1);
  filter: blur(2px) drop-shadow(0px 4px 250px rgba(255, 186, 0, 0.5));
}

.message {
  border-radius: 10px;
  color: white;
  position: relative;
}
.message--top {
  padding: 20px 30px;
  font-size: 20px;
  background-color: #C13366;
  width: 50%;
  margin: 60px auto 50px;
}
.message--bottom {
  padding: 20px 50px;
  font-size: 25px;
  background-color: #E89029;
  margin: 0 20% 0 10%;
}

.message__arrow {
  position: absolute;
  top: 99%;
  width: 20%;
}
.message__arrow--left {
  left: 10%;
}
.message__arrow--right {
  right: 10%;
}

.messages__ellipse {
  position: absolute;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: translate(-80%, -89%);
  
  background: rgba(199, 29, 85, 0.6);
  filter: blur(50px);
}

.arrow {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}
.arrow__image--lamp {
  position: absolute;
  left: 2%;
  top: 50%;
  width: 23%;
  transform: translateY(-70%);
}
.arrow__image--arrow {
  width: 30%;
  display: block;
  margin: 0 auto;
}

.button__link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0 40px;
  background: linear-gradient(180deg, #AF1C4E -35.71%, #FF3D7E 51.03%, #850D33 132.52%);
  box-shadow: 0px 13px 15px rgba(0, 0, 0, 0.3), 0px 4px 0px #8D0E38, 0px 15px 200px #FF4E88, inset 0px 2px 40px rgba(255, 79, 138, 0.5);
  border-radius: 100px;
  font-size: 18px;
  line-height: 63px;
  text-decoration: none;
  color: #FFFFFF;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.button-description {
  font-weight: 500;
  font-size: 10px;
  color: #D37296;
  display: block;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 80px;
}

.footer {
  padding: 20px 30px;
  color: white;
  font-size: 15px;
}
.footer__item {
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 25px;
}

.footer__link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.footer__link:hover, .footer__link:focus {
  text-decoration: underline;
}

.accent {
  color: #F73D7C;
}

@media (max-width: 300px) {
  .message--top {
    padding: 10px 15px;
    font-size: 12px;
    width: 60%;
    margin: 30px auto 30px;
  }
  .message--bottom {
    padding: 10px 20px;
    font-size: 15px;
    margin: 0 10% 0 3%;
  }
  .arrow {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .button__link {
    padding: 0 20px;
    font-size: 13px;
    line-height: 40px;
  }
  .button-description {
    font-size: 7px;
    margin-bottom: 40px;
  }
  .footer {
    padding: 20px 30px;
    color: white;
    font-size: 10px;
  }
  .footer__item {
    margin-bottom: 10px;
    line-height: 14px;
  }
}