body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.header {
    min-height: 60px;
    background-color: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0px 1px 32px -15px rgba(0,196,255,1);
    margin-bottom: 25px;
    padding: 0 5rem;
}
.header__logo img{
    max-width: 100%;
}
.main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 0 5rem;
}
.main__title{
    font-size: 2.5rem;
    font-weight: 600;
}
.main__text {
    font-size: 1.2rem;
    text-align: justify;
}

@media (max-width: 800px){
    .main, .header {
        padding: 0 3rem;
    }
}