@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


.italic{
    font-style: italic;
}

body{
    background-image: url("img/bg-aria.svg");

}
.main-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    gap: 2rem;
    padding-top: 3rem;

        .content-wrapper{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 2rem;
            align-items: center;
            align-self: center;
            max-width: 80vw;

            .divider{
                background-color: white;
                width: 25rem;
                height: 1px;
                margin: 1rem;
            }
            .text-wrapper h2, p{
            color: white;
            text-align: center;
            font-family: "Inter", sans-serif;
        }
    }

}