@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
  box-sizing: border-box;
}

html {
  background-color: #FFFFFF;
}

html, body {
  margin: 0;
  height: 100%;
  width: 100%;

  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

header {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px;

  background: #ECECEC;
  box-shadow: 0 1px 2px 0px rgb(0 0 0 / 15%);
}

header .header-logo {
  width: 80%;
  max-width: 300px;
}

header .build-setting {
  position: absolute;
  bottom: 0;
  color: red;
  font-weight: bold;
  font-size: 0.8em;
}

.button {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 1000px;

  background-color: #E30613;
  text-decoration: none;
  color: white;
  /* font-size: 0.9em; */
  font-weight: 700;
}

.download-button {
  padding-left: 35px;
  background-image: url('/image/download.svg');
  background-position: 10px center;
  background-size: 18px;
  background-repeat: no-repeat;
}

.install-options {
  margin-top: 20px;
  padding: 10px;
}

.install-option {
  margin-bottom: 40px;
}

.install-option-header {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}

.install-instructions {
  margin-top: 10px;
}