*{
    --Verde: hsl(75, 94%, 57%);
    --Blanco_letra: hsl(0, 0%, 100%);
    --Gris_700_boton: hsl(0, 0%, 20%);
    --Gris_800_carta: hsl(0, 0%, 12%);
    --Gris_900_fondo: hsl(0, 0%, 8%);  
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
    color: var(--Blanco_letra);
    font-family: Arial, Helvetica, sans-serif;
} 
body{
    background-color: hsl(0, 0%, 8%);
    display: flex;
    height: 100vh;    
    align-items: center;
    justify-content: center;
    align-items: center;
    .contenedor{
        margin: auto;
        padding: 2em 0;
        width: 50%;
        max-width: 30em;
        display: flex;
        flex-direction: column;       
        text-align: center;
        background-color: var(--Gris_800_carta);
        border-radius: 0.5em;
        header{
            img{
                padding: 0.5em;
                height: 10em;
                width: 10em;
                border-radius: 100%;
                aspect-ratio: 1/1;
                object-fit: contain;
            }
            h1{
                font-size: 2em;
                font-weight: 100; 
                line-height: 1.3em;
            }
            .ubicacion{
                color: var(--Verde);
            }
            .descripcion{
                line-height: 4em;
            }
        }
        .botones{
            display: flex;
            flex-direction: column;
            gap: 1em;
            padding: 0.5em  2em;
            button{
                padding: 0.9em;
                background-color: var(--Gris_700_boton);
                border: none;
                border-radius: 0.5em;
                transition: all 0.1s ease;
                cursor: pointer;
            }
            button:focus{
                background-color: var(--Verde);
            }
            button:hover{
                transform: scale(1.1);
            }
        }
    }
}
@media(max-width:375px){
    body{
        .contenedor{
            margin: 0 1.5em;
            width: 100%;
            header{
                img{
                    margin: 0 0 1em 0;
                }
            }
        }
    }

}