body {
    margin: 0;
    font-family: sans-serif;
}

html {
    font-size: 100%;
}

.hero-container {
    position: relative;
    color: #99f4fb;
}

.hero-image {
    background-image: url('../images/sunsetmicroforever.png');
    height: 100vh;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: block;
}

.hero-text {

    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
} 

h1 {
    font-size: 4rem;
    text-shadow: 4px 4px #ff0000;
    margin: 0;
}

a {
    font-size: 2rem;

}
a:link, a:visited {
    background-color: #36d8f4;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
  }
  
  a:hover, a:active {
    background-color: rgb(0, 208, 255);
  }