* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: sans-serif;
    font-size: 100%;
}

#hero-image {
background-image: url(../images/shipbackground.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}

#hero-text {
    color: whitesmoke;
    text-align: center;
    border: 3px solid whitesmoke;
    border-radius: 15px;
    box-shadow: 5px 5px 20px black;
    padding: 0 10px;
}

#hero-text h2 {
    font-size: 250%;
    font-weight: 1000;
}

#hero-text p {
    font-size: 150%;
    font-weight: 600;
    line-height: 50px;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: black;
    background-color: aquamarine;
    padding: 10px 30px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hero-btn:hover {
    color: aquamarine;
    background-color: black;
}