@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;1,200&display=swap");

body {
  margin: 0;
}

.site-container {
  margin: 0px 0px 0px 0px;
  background-color: #dbd5c9;
  height: 100vw;
  max-height: 100vw;
}

.welcome {
  text-align: center;
  font-family: "Montserrat";
}
.welcome h1 {
  margin: 0vw 0vw 3vw 0vw;
  color: black;
  font-size: 4em;
}
.welcome h2 {
  margin: 0vw 0vw 1vw 0vw;
  color: black;
}
.welcome a {
  color: black;
  font-size: 2em;
  text-decoration: none;
  margin: 0vw 0vw 0vw 0vw;
}
.welcome a:visited {
  color: black;
  text-decoration: none;
}
.welcome a:hover {
  color: gray;
}
.welcome p {
  font-size: 1.5em;
  font-family: "Montserrat", "sans-serif";
  font-style: bold;
  color: black;
  margin: 0vw 0vw 0.5vw 0vw;
}

.line {
  height: 0.2em;
  width: 20vw;
  background-color: white;
  margin: auto;
  margin-bottom: 2vw;
}

.underline-hover {
  color: black;
  text-decoration: none;
  position: relative;
}
.underline-hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  bottom: -3px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease-in-out;
}
.underline-hover:hover::before {
  transform: scaleX(1);
}
