* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: grey;
}

h1 {
    text-align: center;
    font-family: sans-serif;
}

.container {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

.btn-random-dog {
    background-color: antiquewhite;
    font-size: 1.8em;
    border-radius: 5px;
    padding: 0.5em;
}

.btn-random-dog:hover {
    background-color: azure;
}

.btn-random-dog:active {
    background-color: red;
}

.dog-img {
    border-radius: 5%;
    width: 90vw;
    height: 60vh;
    border: 1px solid black;
}

.footer {
    text-align: center;
    background-color: rgb(0, 0, 0);
    padding: 1em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.text-footer {
    color: aliceblue;
    text-shadow: 0 0 10px rgb(255, 254, 254);
    font-family: 'Courier New', Courier, monospace;
}

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

a:hover {
    text-shadow: 0 0 10px red;

}

/* QUERIES */
@media (min-width:1025px) {

    .dog-img {
        border-radius: 5%;
        width: 45%;
        height: 400px;
        border: 1px solid black;
    }

    .text-footer {
        font-size: 2em;
    }
}
