@import url('https://fonts.googleapis.com/css2?family=Alkatra&family=Oswald&family=Poppins:wght@100&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  html {
    font-family: "Alkatra";
    font-size: 10px;
  }
  body {
    background-image: url(./luffy.webp);
    background-position: 30%;
    background-size: auto;
    color: white;
  }
  section {
    min-height: 100vh;
    width: 100%;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .title {
    position: absolute;
    top: 50px;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .container {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    background-color: rgb(255, 244, 96);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    color: black;
  }
  .container p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 3rem;
    text-align: justify;
  }
  button {
    margin-top: 40px;
    width: fit-content;
    padding: 2rem;
    font-size: 2rem;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    align-self: flex-end;
  }
