/* IBM Plex Sans Variable Font */
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('./fonts/IBM_Plex_Sans/IBMPlexSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 700;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('./fonts/IBM_Plex_Sans/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 700;
  font-stretch: 75% 125%;
  font-style: italic;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  text-align: center;
}



header {
  background: #000;
  color: #fff;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  margin-bottom: 20px;
}
header .icon img {
  width: 100%;
  height: 100%;
}

header h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-top: 30px;
  margin-bottom: 10px;
}
header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 30px;
}
header p {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
header a {
  color: #1E90FF;
  text-decoration: none;
}