

body {
  background: black;
}

.bigText {
  font-family: myBoldFont;
  font-size: 48px;
  color: #fff;
}

.button {
  display: flex;
  align-items: center;
  border: 0.15rem solid white;
  border-radius: 0.5rem;
  color: white;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0);
  font-family: myRegularFont;
}

.homeImage {
  position: relative;
  width: 50%;
  height: auto;
}

.homeImage:hover {
  z-index: 2;
}

.homeImage img{
  object-fit: cover;
  width: 100%;
  height: 100vh;
  filter: saturate(0%);
  opacity: 0.5;
}

.homeImage:hover img{
  filter: saturate(100%);
  opacity: 0.8;
  box-shadow: 0 0 5px 5px black;
}

.homeImage div{
  display: flex;
  position: absolute;
  flex-direction: column;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.homeImage div h3{
  margin: 25px;
  opacity: 0;
  visibility: hidden;
}

.homeImage:hover div h3{
  visibility: visible;
  opacity: 1;
}

.homeImage div a{
  opacity: 0;
  visibility: hidden;
  text-decoration: none;
}

.homeImage div h3 {
  text-align: center;
}

.homeImage:hover div a{
  visibility: visible;
  opacity: 1;
}

.homeImage:hover div h2{
  color: white;
}

#homeImageCont {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.subHeader {
  color: #8a8a8a;
  font-family: myBoldFont;
  font-size: 2rem;
  letter-spacing: 0.3rem;
}

.text {
  color: white;
  font-family: myRegularFont;
  font-size: 24px;
  margin-bottom: 10px;
}

.titleHome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  z-index: 0;
  letter-spacing: 0.5rem;
}

@media screen and (max-width: 600px) {
  .bigText {
    font-size: 2rem;
  }

  .homeImage div h3 {
    display: none;
  }

  .subHeader {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .text {
    font-size: 1rem;
  }
}