@font-face {
  font-family: 'Roboto';
  src: url('./assets/fonts/Roboto_SemiCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Roboto';
  src: url('./assets/fonts/RobotoSemiCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
}

* {
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #FFFFFF;
    color: #000000
}

.page{
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}
.terms {
  max-width: 800px;
  width: 100%;
}

.terms__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.terms__subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
}

.terms__text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.terms__list {
  padding-left: 20px;
  font-size: 14px;
  color: #333;
}

.terms__list li {
  margin-bottom: 6px;
}