body{
    background-image: url('src/leopard.jpg');
    background-size: contain;
}

h1{
    color: white;
    font-size: 24px;
    text-align: center;
}

#debut{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

#photos{
    display: flex;
    flex-wrap: wrap;
    row-gap: 102px;
    margin-top: 40px;
    margin-bottom: 80px;
    list-style-type: none;
}

#photos img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
}

#photos img:nth-of-type(odd){
    rotate: -8deg;
    margin: auto auto auto 20px;
}

#photos img:nth-of-type(even){
    rotate: 8deg;
    margin: auto 20px auto auto;
}

#gif{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    margin-top: 20px;
    margin-bottom: 50px;
}


@media (min-width:961px){
    h1 {
        font-size: 36px;
    }

    #photos{
        display: flex;
        flex-wrap: wrap;
        margin-top: 80px;
        margin-bottom: 80px;
        list-style-type: none;
    }

    #photos img{
        width: 40%;
    }

    #photos img:nth-of-type(odd){
        display: block;
        margin-left: 70px;
        padding-bottom: 300px;
        margin-right: auto;
    }

    #photos img:nth-of-type(even){
        display: block;
        margin-left: auto;
        margin-right: 70px;
        padding-top: 300px;
    }

    #gif{
        width: 50%;
    }
}