﻿body {
    background-color: var(--white);
}

main > a > svg {
    position: absolute;
    top: 8px;
    left: 14px;
    height: 30px;
    width: 100px;
}

h1 {
    font-weight: 800;
    text-align: center;
    font-size: 39px;
    margin-top: 1rem;
}

section > div {
    max-width: 500px;
    margin: auto;
}

    section > div > b {
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        margin: 1rem 0 5px 0;
        display: block;
    }


    section > div > p {
        font-size: 14px;
        line-height: 22px;
    }
    section > div > p > a{
    }

    section > div > ul {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin: 5px 0 1rem 1.3rem;
    }
        section > div > ul > li {
            list-style: disc;
        }


.btn-light {
    width:max-content;
    margin:auto;
    margin-top:1rem;
}
.btn > svg {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
        @media(max-width:576px){
            h1 {
                font-size: 29px;
            }
        }