body {
    margin: 0;
}
.main-container {
    display: flex;
    height: 100vh;
    align-items: center;
    background: #111;
}
.main-container .image-container {
    /* flex: 1; */
    background: red;
    height: 100%;
    position:fixed;
    width: 100%;

}
.text {
    flex: 1;
    text-align: center;
    color: rgb(0, 0, 0);
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 10px;
    
    pointer-events:none;
    z-index: 100;
    text-shadow: 2px 16px 16px rgb(0,0,0,0.3);
    color: white
}





@media (max-width: 760px){
.text {
flex:1;
text-align: center;
color: rgb(0,0,0);
font-family: "Raleway", sans-serif;
    text-transform: uppercase;
font-size: 20px;
font-weight: 100;
letter-spacing: 10px;
    
    z-index: 100;
    text-shadow: 2px 16px 16px rgb(0,0,0,0.3);
    color: white;
    pointer-events: none;
}
}



/* From Uiverse.io by TISEPSE */ 
a {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid #fefefe;
  text-transform: uppercase;
  color: #fefefe;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}

a::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - 12px);
  background-color: #212121;
  transition: 0.3s ease-in-out;
  transform: scaleY(1);
}

a:hover::before {
  transform: scaleY(0);
}

a::after {
  content: '';
  position: absolute;
  left: 6px;
  top: -2px;
  height: calc(100% + 4px);
  width: calc(100% - 12px);
  background-color: #212121;
  transition: 0.3s ease-in-out;
  transform: scaleX(1);
  transition-delay: 0.5s;
}

a:hover::after {
  transform: scaleX(0);
}

a span {
  position: relative;
  z-index: 3;
}

button {
  background-color: none;
  text-decoration: none;
  background-color: #212121;
  border: none;
  z-index: 100;
    pointer-events: auto;
}