@font-face {
  font-family: Es-Rebond-Grotesque-3_Regular;
  src: url("fonts/ES-Rebond-Grotesque-3/otf/ESRebondGrotesque-Regular.otf")
    format("opentype");
  font-display: swap;
}

@font-face {
  font-family: Es-Rebond-Grotesque-3_Italic;
  src: url("fonts/ES-Rebond-Grotesque-3/otf/ESRebondGrotesque-Italic.otf")
    format("opentype");
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("fonts/Inter/Inter-VariableFont_slnt,wght.ttf")
    format("regular");
  font-display: swap;
}

@font-face {
  font-family: Inter_Italic;
  src: url("fonts/Inter/Inter-VariableFont_slnt,wght.ttf")
    format("italic");
  font-style: italic;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Es-Rebond-Grotesque-3_Regular", sans-serif;
  font-weight: normal;
  background-color: #ebebeb;
  line-height: 2.5;
}

.content {
  margin: 0px 20px 40px 20px;
}

.header {
  display: block;
  background-color: #000000;
  height: 80px;
  width: 100%;
}

.footer {
  position: relative;
  display: block;
  background-color: #000000;
  background-color: #000000;
  height: 200px;
}

#header-logo {
  position: absolute;
  top: 25px;
  left: 25px;
  height: auto;
  width: 90px;
  z-index: 1;
}

#fastly-logo {
  position: absolute;
  top: 25px;
  left: 25px;
  height: auto;
  width: 90px;
  z-index: 1;
}

h1 {
  font-size: 24px;
  font-weight: bolder;
}

h2 {
  font-size: 20px;
  font-family: "Es-Rebond-Grotesque-3_Italic";
}

a {
  text-decoration: none;
  color: white;
}

.button {
  background-color: #B30003;
  color: rgb(255, 255, 255);
  border: 2px solid black;
  border-radius: 6px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
  transform: 0.2s;
}

#menu-icon {
  position: absolute;
  top: 1%;
  right: 2%;
  height: auto;
  width: 60px;
  z-index: 1;
  cursor: pointer;
}

#inline-link {
  color: blue;
  text-decoration: underline;
}

.button:hover {
  background-color: #640002;
}

