body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3ede2;
    color: #FF5733;
}

.container {
    text-align: center;

}

.centered {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
    
}

h1 {
    padding: 30px;
    font-family: "Archivo Black", sans-serif;
    font-size: 35px;
}

#bottom-text{
    font-family: "Archivo", sans-serif;
    font-weight: 200;
    font-weight: 400;
    font-size: 30px;
    color: #444;
}
@media (min-width: 900px) {
    /* Styles for large screens */
    h1 {
        font-size: 65px;
        width: 90vh;
    }
}

#animation {
    width: 200px;
    height: 200px;
    background-color: #FF5733;
    -webkit-animation: squareToCircle 7s 0s infinite alternate;
  }
  
  @-webkit-keyframes squareToCircle {
      0% {
        border-radius: 10% 10% 10% 10%;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
      10% {
        border-radius: 50% 10% 10% 10%;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
      20% {
        border-radius: 50% 50% 10% 10%;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
      30% {
        border-radius: 50% 50% 50% 10%;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
      40% {
        border-radius: 50% 50% 50% 50%;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }

      50% {
        border-radius: 10% 10% 10% 10%;
        width: 300px;
        background: #FF5733;
        transform: rotate(0deg);
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
      60% {
        border-radius: 50% 0 0 0;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
      70% {
        border-radius: 50% 50% 10% 10%;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
      80% {
        border-radius: 50% 50% 50% 10%;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
      90% {
        border-radius: 50% 50% 50% 50%;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
      100% {
        border-radius: 50% 50% 50% 50%;
        background: #FF5733;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      }
  }

