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

}

nav {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;

}

ul {
    display: flex;
    list-style-type: none;
    padding: 0 1rem;
}

li {
    margin: 0 1rem;
}

a {
    text-decoration: none;
    color:aquamarine;
}

.hero {

    
    width: 100%;
    height: 70%;

    background-image: url('../images/gallery-image-4.jpg');
    background-size: cover;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

h1 {
    color: white
}

.box {
    background: lightblue;
    width: 100%;
    height: 50%;
    margin: 2rem 0;

    display: flex;
    align-items: flex-end;

}

.row {
    width: 100%;
    height: 100%;
    display: flex;
}

footer {
    width: 100%;
    height: 10%;
    background: lightcyan


}
