@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

html,body,main {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}
main {
    background-color: #000000;
    overflow: hidden;
    color: #ccc;
    background-image: url('../img/background.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    box-shadow: inset 0 0 0 10000px rgba(0,0,0,.75);
}
@media screen and (max-width: 1200px) {
    main {
        background-size: cover;
    }
}

main .z50 {
    position: absolute;
    z-index: 50;
    opacity: .05;
}
main.alt .z50 {
    position: absolute;
    z-index: 50;
    opacity: .15;
}
main .z50 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
main .z100 {
    position: relative;
    z-index: 50;
}
main .z100 .row {
    width: 100%;
    --bs-gutter-x: 0;
}

.leaf {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    object-fit: contain;
}
.leaf2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    object-fit: contain;
}

.content {
    width: 100%;
    max-width: 530px;
    padding: 0 1.85rem;
    margin: 0 auto;
    display: block;
    height: 100%;
    overflow: hidden;
}

#logo {
    height: 210px;
    width: 100%;
    object-fit: contain;
}

p {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 18px;
}
h4 {
    margin: 0;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
}
a.social {
    text-decoration: none !important;
    outline: none !important;
    transition: color .2s ease;
    font-size: 30px;
    color: #ffffff;
}
a.social i {
    color: #b45642;
}
a.social:hover {
    color: #b45642;
}
main.alt a.social i,
main.alt a.social:hover {
    color: #fcca77;
}

a.hl {
    text-decoration: none !important;
    color: #ccc !important;
    outline: none !important;
}
main.alt a.hl {
    color: #ffffff !important;
}

.ml {
    display: inline-block;
    text-align: right;
    font-size: 27px;
    position: relative;
    color: #ffffff;
    margin-left: -25px;
}
.ml::before {
    content: "'";
    color: #ffffff;
    margin-right: 5px;
}

.mr {
    display: inline-block;
    text-align: left;
    font-size: 27px;
    position: relative;
    color: #b45642;
    margin-right: -25px;
}
.mr::after {
    content: "'";
    color: #b45642;
    margin-left: 5px;
}
main.alt .mr,
main.alt .mr::after {
    color: #fcca77;
}

@media screen and (max-width: 980px) {
    .leaf,
    .leaf2 {
        opacity: .15;
    }
}