html {
    font-family: 'Trebuchet MS', sans-serif;
}

body {
    background-color: #333;
    margin: 50px;
}

h1 {
    position: relative;
    left: 50px;
    bottom: 60px;
    margin-bottom: auto;
    background-color: #FF007F;
    border-radius: 5px;
    width: fit-content;
    padding: 10px;
    text-align: center;
}

.otter-card {
    background-color: white;
    width: 400px;
    bottom: 20px;
    padding: 20px;
    border-style: solid;
    border-color: #333;
    border-radius:10px;
    text-align: justify;
}

p {
    padding: 0;
    margin-top: -40px;
}


/* Media Queries for Tablets */
@media (max-width: 768px) {
    .otter-card {
      width: 300px;
    }
    h1 {
      left: 20px;
    }
  }

    .otter-card {
        width: 300px;
        padding: 15px;
    }

    p {
        margin-top: -20px;
    }

/* Media Queries for Mobile Phones */
@media (max-width: 480px) {
    .otter-card {
      width: 200px;
    }
    h1 {
      left: 10px;
      font-size: 18px;
    }
    p {
      font-size: 14px;
    }
  }

/* Media Queries for smaller Phones */
@media (max-width: 320px) {
    .otter-card {
      width: 150px;
    }
    h1 {
      left: 5px;
      font-size: 16px;
    }
    p {
      font-size: 12px;
    }
  }
