body {
    width: 100%;
    height: auto;
}

#titulo, #subtitulo, #year, #frase {
    font-family: 'Neue Einstellung', Arial, sans-serif;
}

#descripcion {
    font-family: 'Cerebri', Arial, sans-serif;
}

#year {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
    body {
        width: 100%;
        height: auto;
    }
    
    #titulo, #subtitulo, #year, #frase {
        font-family: 'Neue Einstellung', Arial, sans-serif;
    }
    
    #descripcion {
        font-family: 'Cerebri', Arial, sans-serif;
    }
    
    #year {
      position: relative;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
    }
}