h1 {
    color: white;
    font-size: 4.5vw;
    padding: 10%;
}

body {
    background-color: white;
}

p {
    color: black;
}

header {
    background-image: url(img/header.jpg);
    background-size: 100%;
    height: 60vw;
    background-repeat: no-repeat;
}

.hamad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5%;
}

.hamad h2 {
    font-size: 5vw;
    padding-left: 15%
}

.previous {
    background-color: black;
    color: black;
}

.next {
    background-color: black;
    color: black;
}

.round {
    border-radius: 50%;
}

.photos {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
    margin-left: auto;
    margin-right: auto;

}

.photos img {

    width: 100%;
    height: 100%;
}

@media (min-width: 800px) {
    .photos {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 2.5em;
    }
}

@media (min-width: 1200px) {
    .photos {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    h1 {
        font-size: 3em;
    }
}
