:root {
    --main-bg-color: hsl(212, 45%, 89%) ;
    --white-bg-color: hsl(0, 0%, 100%);
    --grayish-blue-text: hsl(220, 15%, 55%);
    --dark-blue-text: hsl(218, 44%, 22%);
    --fuentePrincipal: 'Outfit', sans-serif;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

body {
    background-color: var(--main-bg-color);
    font-family: var(--fuentePrincipal);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;

}


.container {
    background-color: var(--white-bg-color);
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    box-shadow: 2px 4px 14px 3px #d0d0d0;
}


.container img {
    width: 100%;
    max-width: 28rem;
    border-radius: 1rem;
}

.info {
    max-width: 28rem;
}

.info h1 {
    text-align: center;
    color: var(--dark-blue-text);
    font-weight: 700;
    font-size: 2.3rem;
}

.info p{
    text-align: center;
    color: var(--grayish-blue-text);
    font-weight: 400;
    font-size: 1.5rem;
    max-width: 25rem;
    margin: 1rem auto;
}




