:root{
    --blue: #1DA0E4;
    --black: #6F3900;
    --Lemonada: Lemonada;
    --Lato-Italic: LatoItalic;
}

.Hero{
    background-image: url(img/ourPlaces/zakynthos-1-1280.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .Hero>h1{
        color: white;
        text-shadow: var(--black) 2px 2px 2px;
        font-family: var(--Lemonada);
        font-size: 2.5em;
        position: sticky;
        top: 50vh;
        margin: 3em;
    }
        .Hero>h1>span{
            color: var(--blue);
        }

.Text-Photo{
    background-image: url(img/ourPlaces/santorini-2-1280.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textContainer{
        max-width: 500px;
        margin: 5em 2em;
        padding: 1em;
        background-color: hsla(0, 0%, 3%, 0.5);
        border-radius: 2em;
        color: white;
        font-family: var(--Lato-Italic);
    }
        .textContainer>*>span{
            color: var(--blue);
        }
        .textContainer>h1{
            font-size: 1.8em;
        }
        .textContainer>p{
            font-size: 1.2em;
        }