html, body {
    height: 100%;
    margin: 0;
    background: #2B2A33;
    font-family: consolas, sans-serif;
}
.nq-container {
    position: relative;
    display: flex;
    justify-content: center;
}
.nq-wrapper {
    height: 100%;
}
.nq-content {
    flex-direction: column;
    gap: 150px;
}
.nq-headline {
    text-align: center;
    position: relative;
    font-size: 80px;
    color: white;
}
.nq-description-container {
    margin-top: 5px;
}
.nq-description {
    text-align: center;
    position: relative;
    left: 3px;
    color: #BBB;
    letter-spacing: 0.035em;
    font-size: 24px;
}
.nq-buttons {
    gap: 132px;
    left: 2px;
}
.nq-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 150px;
    width: 150px;
    padding: 18px;
    color: white;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
}
.nq-button:hover {
    background: rgb(0 0 0 / .15);
    border-color: #DDD;
}
.nq-typewriter {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    width: 0;
    animation: nq-typing 0.3s 0.2s forwards;
}
.nq-awake {
    animation: nq-awake 0.8s forwards;
}
@keyframes nq-typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes nq-awake {
    from { opacity: 0; gap: 0; }
    to { opacity: 1; gap: 150px; }
}

:root {
    --bs-body-bg: #2B2A33;
}
.modal.modal-static .modal-dialog {
    transform: none;
}
.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}
.modal-header_about {
    margin-left: -1px;
    display: flex;
    justify-content: center;
}
.modal-footer {
    border-top: none;
    justify-content: space-between;
}

.modal__price {
    font-size: 18px;
    padding-left: 1px;
}
.modal__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal__header-container {
    display: flex;
    align-items: center;
    width: 423px;
}
.modal-title_about {
    font-weight: bold;
    font-size: 18px;
}
.modal-body_about {
    padding-top: 22px;
}
.modal__description {
    text-align: justify;
    width: 423px;
}
@media (max-width: 575px) {
    .nq-headline {
        font-size: 40px;
        left: 1px;
    }
    .nq-description {
        font-size: 12px;
    }
    .nq-buttons {
        gap: 65px;
        left: 1px;
    }
    .nq-button {
        border-radius: 75px;
        width: 75px;
        padding: 9px;
        font-size: 9px;
    }
    .modal-title_buy {
        font-size: 16px;
        font-weight: bold;
    }
    .modal__description {
        width: 264px;
    }
    .modal__description_with-love {
        text-align: left;
    }
}