@font-face {
  font-family: 'KremlinMinister';
  src: url('./assets/fonts/KremlinMinisterBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('./assets/fonts/Outfit-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

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

@font-face {
  font-family: 'Outfit';
  src: url('./assets/fonts/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('./assets/fonts/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

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

.logo {
  font-family: 'KremlinMinister', sans-serif;
  text-transform: lowercase;
  font-size: 36px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

body {
  min-height: 100vh;
  background-color: #1A1A1A;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-weight: 100;
}

img {
  max-width: 300px;
  width: 100%;
  min-width: 100px;
}

h1, strong {
  font-weight: 100;
  font-size: 24px;
}

h1 {
  margin: 36px 0 16px;
}

strong {
  color: #b09d94;
}

a {
  font-weight: 100;
  cursor: pointer;
  color: #b09d94;
}

@media (max-width: 600px) {
  h1, strong {
    font-size: 18px;
  }
}