

body {
    background-image: url('imgs/index-backgruond.png');
    background-position: center;
    background-size: cover;
}

.section {
    
    &.section-banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 3em;
        margin-top: 5em;
        

        h2 {
            font-size: 46px;
            max-width: 45ch;
            line-height: 1.2;
            margin-bottom: 1em;
            color: #0C4E69;
        }

        h3 {
            text-align: center;
            color: #0C4E69;
            font-size: 3.15em;
            margin-bottom: 0.3em;
        }

        p {
            font-size: 24px;
            max-width: 82ch;
            line-height: 1.2;
            margin-bottom: 3em;
            color: rgb(0, 0, 0);
        }

        a {
            border-radius: 2em;
            padding: 1em 1.5em;
            color: #FFF;
            background: #0C4E69;
            box-shadow: 0 0 1em 0.1em rgb(0, 0, 0, 0.2);
        }
    }
}


@media (width <= 800px) {
    .section-banner .inner h2,
    .section-banner .inner h3 {
        font-size: 36px;
    }

    .section-banner .inner p {
        font-size: 24px;
    }

    .site-logo img {
        margin-left: 1em;
    }
}