*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: hsl(212, 45%, 89%);
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Outfit";
}

.container{
    border-radius: 10px;
    width: 75%;
    height: 480px;
    background-color: white;
    padding: 20px;
}
.container h1{
    text-align: center;
    margin-bottom: 20px;
}
.container p{
    text-align: center;
    line-height: 1.2rem;
}
.container img{
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10px;
}
@media screen and (min-width:1158px) {
    .container{
        width: 17%;
    }
}