#hero {
    height: 800px;
    background-image: url('./assets/images/lake.jpg');
    background-position: center;
    background-size: cover;

}

#hero-content {
    width: 800px;
    background-color: rgba(51, 47, 47, 0.8);
    box-shadow: 2px 4px 8px rgba(68, 67, 67);
    border-radius: 8px;
    text-align: center;
    padding: 50px 0;
    margin: 0 auto;
    position: relative;
    top: 200px;
}

#hero-content h1 {
    color: white;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    font-size: 40px;
    margin: 0;
}

#hero-content p {
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
}

#hero-content a {
    color: black;
    padding: 12px 24px;
    background-color: rgb(255, 251, 0);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;

    box-shadow: 2px 4px 8px rgba(68, 67, 67, );
}

#hero-content a:hover {
    background-color: rgb(255, 238, 0);

}

#destinations {
    display: flex;
    width: 90%;
    margin: auto;
    margin-bottom: 40px;
    justify-content: center;

}

#highlight {
    padding: 24px;
    background: linear-gradient(45deg, rgb(227, 255, 253), rgb(202, 243, 240));
}

#highlight h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 40px;
    color: rgba(59, 65, 64, );
    margin: 24px;
}

.destination {
    margin: 0 20px;
    text-transform: uppercase;
    color: rgb(124, 123, 123);
    margin: 20px;

}

.destination p {
    text-align: center;
    font-size: 24px;

}

.destination strong {
    color: rgb(0, 160, 170)
}

.destination img {
    height: 200px;
    box-shadow: 2px 4px 8px rg(0, 0, 0, 0.3);
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}