:root{
    --letra: #A9B0B9;
    --principal: #D7E3F5;
}

*{
    padding: 0;
    margin: 0;
}

html{
    font-size: 10px
}
body{
    font-size: 62.5%;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    background-color: #D7E3F5;
}
*, *:after, *:before{
    box-sizing: inherit;
}
img{
    max-width: 100%;
    display: block;
}

.contenedor{
    width: 25rem;
    height: 40rem;
    top: 50%;
    right: 50%;
    position: absolute;
    transform: translate(50%, -50%);
    background-color: white;
    border-radius: 2rem;
}
.contenedor img{
    width: 22rem;
    height: 22rem;
    border-radius: 1rem;
    display: block;
    margin: 1.5rem;
}
h2{
    font-size: 1.8rem;
    text-align: center;
    padding: 1rem;
}
p{
    text-align: center;
    font-size: 1.3rem;
    color: var(--letra);
    font-weight: bold;
    padding: 1rem;
}