body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: url('/assets/img/bg-layer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/paralax.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    will-change: transform;
}

main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    position: relative;
    z-index: 1;
}

main .row {
    width: 100%;
    justify-content: center;
}

main .col-12 {
    text-align: center;
}

main .logo-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.btn-border{
    border-bottom: 10px solid white;
}