* {padding: 0;
    margin: 0;
    background-color: black;
}

.qr {
    height: 300px;
    width: 300px;

}

section {
    background-color: black;
    width: 100%;
    height: 600px;
}

p, h1 {
    color: darkgoldenrod;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    gap: 20px;               
    text-align: center;
}


footer {
    display: flex;
    justify-content: space-around;
}


.footer {
    height: 200px;
    background-color: black;
    padding: 20px;
    margin: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}


.footer:first-of-type > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.footer:first-of-type a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: black;
}


.footer:last-of-type > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

img {width: 50px;
    height: 50px;}
    

p {
    margin: 0;
    font-size: xx-large;
}

@media (max-width: 880px) {

    
    footer {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: flex-start;
        gap: 20px;
        flex-wrap: nowrap;
    }

    
    footer .footer {
        display: flex;             
        flex-direction: column;
        width: 48%;                
        height: auto;
        margin: 0;
    }

    
    footer p {
        font-size: large;
        text-align: left;
    }

    
    footer img {
        width: 40px;
        height: 40px;
    }
}





