*{box-sizing: border-box;}

.slider{
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  
  width: 100%;
  
}


.slide img{
    width: 100vw;
    height: 800px;
    display: flex;
    position: relative;
    object-fit: fill;
    
}
.slide{
   display: none;
}


.text{
    display: block;
    position: absolute;
    bottom: 0px;
    left: 30px;
    height: 20px;
    text-align: left;
    align-items: center;
    justify-content: left;
    top:60%;
  }
  .text button {
    cursor: pointer;
    
  }


.text h1{
    color:white;
    font-weight: bold;
    font-size: 70px;
    margin: 10px;
  }

.text h1{
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 4px 0 #000,
    1px 3px 0 #000;
}

.text p{
  color:white;
  font-weight: bold;
  font-size: 30px;
  margin: 10px;
}

.text p{
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 4px 0 #000,
    1px 3px 0 #000;
}



.text button{
    background-color: green;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    margin: 10px; 
    border-radius: 5px;
    transition: 0.50s;

}


.text button:hover{
  
  background-color: lightgreen;
  
}

.text a:hover{
  color: black;
}
  
