@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body,
html {
  margin: 0;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
nav {
  background-color: rgb(20, 20, 20);
  display: flex;
  flex-direction: row;
}
#logo {
  display: inline-block;
  width: 20vw;
}
#navLinks {
  width: 80vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
#navLinks a {
  text-decoration: none;
  color: white;
  font-size: 2vw;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  transition-duration: 0.7s;
}
#navLinks a:hover {
  transform: scale(1.2);
}
#changeTheme {
  position: fixed;
  top: 50vh;
  right: 10px;
  background-color: rgb(50, 50, 50);
  width: 6vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5vw;
  font-weight: bolder;
  user-select: none;
}
#main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  background-color: black;
}
h1 {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 3.5vw;
}
#slideShow {
  display: flex;
  align-items: center;
}
#slideShow button {
  margin: 20px;
  color: white;
  background-color: transparent;
  width: 3vw;
  height: 3vw;
  font-size: 2vw;
}
footer {
  display: flex;
  justify-content: center;
  color: white;
  font-family: "Montserrat", sans-serif;
  background-color: rgb(20, 20, 20);
}
