*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
}
nav{
    margin: 0;
    padding: 0;
    background-color: black;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
h1{
    padding: 15px;
    color: rgb(243, 236, 236);
    font-size: 3.5rem;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}
nav select{
    margin: 2rem;
    margin-top: 5rem;
    text-align: center;
    font-size: 20px;
    width: 200px;
    height: 30px;
    border: none;
    border-radius: 5px;
}
.wrapper{
    margin: 0 auto;
    margin-top: 1.5rem;
    padding: 0;
    width: 80%;
    height: 90%;
}
p{
    font-size: 3rem;
    font-family: 'Courgette', cursive;
    color: black;
}
.doggos{
    display: flex;
    justify-content: center;
}
img{
    width: 650px;
}
@keyframes spin{
    to{
        transform: rotateZ(360deg);
    }
}

.spinner{
    display: none;
    font-size: 50px;
    text-align: center;
    margin: 4.5em;
    justify-content: center;
    animation: spin 2s ease-in-out infinite;
}

.dog-img{
    display: none;
}

.show{
    display: block;
}