html {
    height: 100%;
    max-height: 100vh;
    overflow-y: hidden;
}

.logo {
    height: 80px;
}

.logo_white {
    display: none;
}

body {
    position: fixed;
    width: 100%;
    height: 100%;
}

.menu {
    width: 50px;
    height: 45px;
    position: relative;
    margin-right: 2rem;
    margin-top: 1rem;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    float: right;
}

.menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000000;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu span:nth-child(1) {
    top: 0px;
}

.menu span:nth-child(2) {
    top: 18px;
}

.menu span:nth-child(3) {
    top: 36px;
}

.menu.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.menu.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.background-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.17);
    background-image: url(../images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 335px;
    height: 300px;
    margin-left: 3px;
}

.background {
    position: relative;
    white-space: nowrap;
}

.background .block {
    background-color: transparent;
    height: 300px;
    width: 70px;
    display: inline-block;
}

.background .triangle-top,
.background .triangle-bottom {
    transform: rotateY(0);
    position: absolute;
    left: 75px;
    top: -50%;
    width: 0;
    height: 0;
    border-top: 140px solid transparent;
    border-bottom: 160px solid transparent;
    border-left: 280px solid #ffffff;
}

.background .triangle-bottom {
    top: 50%;
    border-top: 160px solid transparent;
    border-bottom: 140px solid transparent;
    border-left: 280px solid #ffffff;
}

.background .triangle::after,
.background .triangle::before {
    content: '';
    position: absolute;
    height: 5px;
    background: transparent;
    transform-origin: 0 0;
}

.background .triangle::after {
    bottom: 0;
    right: 7px;
    left: -2.5px;
    transform: rotate(-30deg);
}

.background .triangle::before {
    top: 0;
    left: 0;
    right: 3px;
    transform: rotate(30deg);
}

.text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.75rem;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.text span:nth-child(8),
.text span:nth-child(9),
.text span:nth-child(10),
.text span:nth-child(11),
.text span:nth-child(12),
.text span:nth-child(13),
.text span:nth-child(14),
.text span:nth-child(15) {
    color: #ffffff;
}

footer,
#footer {
    padding: 1.5rem 0;
    position: absolute;
    bottom: 0;
    max-width: 100%;
    left: 0;
    width: 100%;
}

.left {
    float: left;
}

.right {
    float: right;
}

footer .left,
#footer .left {
    display: inline-block;
    margin-left: 1rem;
}

footer .right,
#footer .right {
    display: inline-block;
    margin-right: 2rem;
    text-decoration: none;
    color: #000000
}

.content {
    height: 100%;
}

@media screen and (max-width: 1005px) {
    .content {
        transform: scale(.65);
    }

    .text {
        font-size: 2.8rem;
        margin-left: -1.25rem;
    }

    .text span:nth-child(7),
    .text span:nth-child(16) {
        color: #ffffff;
    }
}

@media screen and (max-width: 745px) {
    .text span:nth-child(10) {
        display: block;
        height: 0;
    }

    .text span {
        color: #ffffff;
        text-shadow: #000000 0px 0px 10px;
    }

    .left,
    .right {
        float: none;
    }

    footer .left,
    #footer .left {
        display: block;
        margin-left: 0;
        margin-bottom: 1rem;
    }

    footer .right,
    #footer .right {
        margin-left: 0;
        margin-bottom: 1rem;
    }

    footer,
    #footer {
        text-align: center;
    }

    .background-wrapper {
        margin: 0;
    }

    .text {
        margin-left: 0;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 320px) {
    .text {
        margin-left: -25px;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #000000;
    }

    footer .right,
    #footer .right,
    footer .left,
    #footer .left {
        color: #ffffff;
    }

    .menu span {
        background: #ffffff;
    }

    .text span {
        color: #ffffff;
    }

    .background .triangle-top,
    .background .triangle-bottom {
        border-left: 280px solid #000000;
    }

    .logo {
        display: none;
    }

    .logo_white {
        height: 50px;
        display: block;
        margin-left: 1rem;
        margin-top: 1rem;
        float: left;
    }
}