@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem; }

body {
  margin: 0;
  font-family: 'Arial', sans-serif; }

.coming-soon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 10%;
  background-color: #fff;
  position: relative; }
  .coming-soon::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 10rem;
    width: 100%;
    z-index: -1; }
  .coming-soon-content {
    max-width: 50%; }
    .coming-soon-content h2 {
      color: #E72168;
      font-size: 1.5rem;
      margin-bottom: 1rem; }
    .coming-soon-content h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #333;
      line-height: 1.4; }
    .coming-soon-content p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 2rem; }
  .coming-soon-button {
    display: inline-block;
    background-color: #E72168;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.3s ease; }
    .coming-soon-button:hover {
      background-color: #c01552; }
  .coming-soon-image img {
    max-width: 100%;
    height: auto;
    display: block; }

@media screen and (max-width: 768px) {
  .coming-soon {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem; }
    .coming-soon-content {
      max-width: 100%; }
      .coming-soon-content h1 {
        font-size: 2rem; }
    .coming-soon-image {
      margin-top: 2rem; }
    .coming-soon-button {
      font-size: 0.9rem;
      padding: 0.5rem 1rem; } }
