/* Define the custom fonts */
@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  font-size: calc(16px + 0.5vw);
  height: 100vh;
}
.container {
  text-align: left;
  padding: 16px;
}

h1 {
  color: #333;
  font-family: "Gilroy", Arial, sans-serif;
  font-weight: 700;
  font-size: calc(28px + 1.5vw);
  margin-bottom: 8px;
  margin-block: 0;
  user-select: none;
  text-align: left;
}

h1 + h1 {
  margin-top: 0px;
}
h3 {
    color: #333;
    font-family: "Gilroy", Arial, sans-serif;
    font-weight: 700;
    font-size: calc(16px + 1vw);
    user-select: none;
    margin-bottom: 8px;
}
h4 {
  color: #333;
  font-family: "Gilroy", Arial, sans-serif;
  font-weight: 700;
  font-size: calc(12px + 1vw);
  margin-bottom: 4px;
  user-select: none;
}

p {
  color: #666;
  font-size: calc(12px + 0.5vw);
  margin-block-start: 0px;
}
ul {
  list-style-type: disc;
}
li {
  color: #666;
  font-size: calc(12px + 0.5vw);
  margin-block-start: 0px;
}
