@font-face {
  font-family: "MyCustomFont";
  src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: "MyCustomFont";
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  scroll-behavior: smooth;
  color: white;
}

:root {
  --geared-up-color: #078979;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}

#logo-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#logo {
  position: absolute;
  background-color: transparent;
  width: 35vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#logo img {
  width: 100%;
}

#logo h1 {
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  font-size: 3.1vh;
}
