/* Title */
.title {
    display: grid;
    align-self: center;
    justify-self: center;
    place-items: center;
    width: 70%;
}

.title h1{
    object-fit: contain;
    text-align: center;
    font-size: clamp(1.5rem, 6vw, 4rem);
    letter-spacing: clamp(.5rem, 0.6vw, 1rem); 
    line-height: 1.5;
    margin:0;
    text-transform: uppercase; 
    word-break: normal;                  /* prefer normal breaks */
    text-wrap: balance;                  /* nicer multi-line titles (supported in modern browsers) */
}

.title hr {
    margin: 0 auto;
    height: 10px;
    background-color: #ADD8E6;
}

@media (max-width: 900px) {
    .title {
        width: 100%
  }
}