:root {
  --background-color: #ffe1f9;
  --btn-primary-color: #53d84e;
  --btn-secondary-color: #ff6e6e;
  --btn-primary-hover: #4fb63d;
  --btn-secondary-hover: #d44e4e;
  --btn-reset-color: #4c6be6;
  --btn-reset-hover: #3a4dbd;
  --btn-text-color: #fff;
  --radius-btn: 5px;
}

@font-face {
  font-family: Poppins-Regular;
  src: url("../src/fonts/poppins/Poppins-Regular.ttf");
}

@font-face {
  font-family: Poppins-Medium;
  src: url("../src/fonts/poppins/Poppins-Medium.ttf");
}

@font-face {
  font-family: Poppins-Bold;
  src: url("../src/fonts/poppins/Poppins-Bold.ttf");
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url("../src/fonts/poppins/Poppins-SemiBold.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--background-color);
}

.container {
  text-align: center;
  max-width: 90%;
  margin: auto;
  padding: 20px;
}

.title-primary {
  font-family: Poppins-Bold, sans-serif;
  margin-bottom: 20px;
  margin-top: 20px;
}

.title-secondary {
  font-family: Poppins-Bold, sans-serif;
  margin-bottom: 10px;
  margin-top: 10px;
}

.gif-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gif-container img {
  max-width: 100%;
  height: auto;
}

.btn-primary {
  font-family: Poppins-Medium, sans-serif;
  background-color: var(--btn-primary-color);
  color: var(--btn-text-color);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--btn-primary-hover);
}

.btn-secondary {
  font-family: Poppins-Medium, sans-serif;
  background-color: var(--btn-secondary-color);
  color: var(--btn-text-color);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--btn-secondary-hover);
}

.btn-reset {
  font-family: Poppins-Medium, sans-serif;
  background-color: var(--btn-reset-color);
  color: var(--btn-text-color);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.btn-reset:hover {
  background-color: var(--btn-reset-hover);
}

@media (max-width: 575px) {
  .gif-container img {
    width: 80%;
    height: auto;
  }

  .btn-primary {
    font-size: 16px;
    padding: 8px 16px;
  }

  .btn-secondary {
    font-size: 16px;
    padding: 8px 16px;
  }

  .title-primary {
    font-size: 20px;
  }

  .btn-reset {
    padding: 8px 16px;
  }

  .container {
    padding: 10px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-reset {
    padding: 10px 30px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-reset {
    padding: 10px 40px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-reset {
    padding: 10px 50px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-reset {
    padding: 10px 60px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-reset {
    padding: 12px 70px;
    font-size: 18px;
  }

  .title-primary {
    font-size: 24px;
  }

  .title-secondary {
    font-size: 24px;
  }
}