#hero {
    height: 900px;
    background-image: url("images/couple.jpg");
    background-position: center;
    background-size: cover;
}

#hero-content {
    width: 900px;
    background-color: rgba(54, 47, 47, 0.8); 
    box-shadow: 2px 4px 8px rgb(68, 67, 67) ;
    border-radius: 8px;
    text-align: center;
    padding: 50px 0;
    margin: 0 auto;
    position: relative;
    top: 300px;
}

#hero-content h1 {
    color: antiquewhite;
    text-transform: uppercase;
    font-size: 50px;
    font-family: "Raleway", sans-serif;
    margin: 0;
}

#hero-content p {
    color:antiquewhite ;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
}

#hero-content a{
    text-decoration: none;
    background-color: yellow;
    padding: 12px 24px;
    color: black;
    font-size: 24px;
    font-weight:bold;
    border-radius: 8px;
    box-shadow: 2px 4px 8px rgb(247, 16, 16);

}

#hero-content a:hover {
    background-color: red;
}

#highlights h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 40px;
    color: rgb(53, 53, 53);
    margin: 24px 0;
}

#highlights {
    padding: 24px;
    background: linear-gradient(45deg, rgb(209, 229, 228), rgb(183, 240, 250));
}

#destinations {
    display: flex;
    width: 90%;
    margin: auto; 
    margin-bottom: 40px;  
}

.destination{
    margin: 0 20px;
}

.destination p {
    text-align: center;
    text-transform: uppercase;
    color: grey;
}

.destination img {
    height: 200px;
    width: 100%;
    box-shadow: 3px 5px 9px rgb(64, 64, 64) ;
    border-radius: 20px;
    object-fit: cover;
}

.destination strong {
    color: rgb(7, 176, 120); 
}