*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: inter, sans-serif, arial;
    color: rgb(39, 104, 121);
    font-size: 16px;
}

.content-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    .content-wrapper{
        margin: auto;
        display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
        h1{
            text-align: center;
            font-size: 2rem;

        }

        .img-wrapper{
            max-width: 320px;
        }

        .img-wrapper2{
            max-width: 640px;
        }

        img{
            width: 100%;
            padding: 2rem;
        }
    }
}