*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.outfit-fw-bold {
    font-family: "Outfit", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }


.outfit-fw-normal {
    font-family: "Outfit", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

:root{
    --fw-Outfit: "Outfit", serif;

    --fw-normal:400;
    --fw-bold:700;

    --fs-paragraph: 15px

    --white: hsl(0, 0, 100%);
    --Slate-300: hsl(212, 45%, 89%);
    --Slate-500: hsl(216, 15%, 48%);
    --Slate-900: hsl(218, 44%, 22%);

}

img{
    width: 100%;
}


body{
    background-color: var(--Slate-300);
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 1px);
}

.container {
    background-color: white;
    padding: 18px;
    border-radius: 25px;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.05);
    width: 400px;


}

.container img {
    border-radius: 25px;
    margin-bottom: 16px;
    padding-top: -5px;
}



h1 {
    font-family: var(--fw-Outfit) ;
    font-weight: var(--fw-bold);
    color: var(--Slate-900);
    font-size: 30px;
    margin-bottom: 16px;
    text-align: center;

}

p {
    font-family: var(--fw-Outfit);
    font-weight: var(--fw-normal);
    font-size: var(--fs-paragraph);
    color: var(--Slate-500);
    text-align: center;
    margin-bottom: 26px;
    padding: 5px;
}

@media (min-width: 500px){
    .container{
        width: 400px;
    }
}

