@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
    font-weight: 400; 
    user-select: none;  
}

body {
    height: 100%;
    background-image: url("../images/FlappyBack.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;
}

h1 {
    text-align: center;
    margin: 5% 0;
}

.container-imagens {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 25rem;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 1.25rem;
    
    h3 {
        margin: 0.5rem 0 1rem;
        text-align: center;
        font-size: 1rem;
    }
}

.box-img {
    width: 12.5rem;
    height: 18.75rem;
    border: 0.09375rem solid #333;
    border-radius: 0.625rem;

    img {
        width: 100%;
        height: 100%;        
        margin-bottom: 0.125rem;
        border-radius: 0.625rem;
    }
}

@media screen and (max-width: 50rem) {
    .container-imagens {
        flex-direction: column;     
        row-gap: 1.25rem;   
    }
}
