@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
html {
    box-sizing: border-box;
    font-size: 100%;
}

:root {
    --White: hsl(0, 0%, 100%);
    --Lightgray: hsl(212, 45%, 89%);
    --Grayishblue: hsl(220, 15%, 55%);
    --Darkblue: hsl(218, 44%, 22%);
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background-color: var(--Lightgray);

}

.container{
    display: grid;
    grid-template-columns: 1fr;
    height: 100vh;
    align-items: center;
    justify-items: center;
    margin: auto;
}

.textbox{
    width :320px;
    height: 497px;
    text-align: center;
    padding: 15px;
    background-color: var(--White);
    border-radius: 15px;
}
.textbox__image{
    height: 288px;
    width: 288px;
}
.textbox__image img{
    border-radius: 16px;
    height:288px;
}

.textbox__tagline{
    padding: 0 35px;
}

.textbox__tagline h3{
    font-weight: 700;
    color: var(--Darkblue);
}

.textbox__tagline p{
    font-size: 16px;
    font-weight: 400;
    color: var(--Grayishblue);
}

/* %align-center {
    display: flex;
    align-items: center;
} */