* {
  box-sizing: border-box;
  margin: auto;
}

body {
  margin: 0;
}

/* abel-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Abel';
  font-style: normal;
  font-weight: 400;
  src: url('../font/abel-v18-latin-regular.woff2') format('woff2');
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  height: 100vh;
  background-color: #38383b;
}

.content div {
  font-family: Abel, sans-serif;
  font-style: normal;
  color: #fff;
  font-size: 2.4em;
  line-height: 1.35em;
  letter-spacing: normal;
  transition: all 0.2s ease-out;
}

.content div:hover {
  transform: scale(1.1); 
}