#intro {
    position: relative;
    display: flex;
    height: 800px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    align-items: center;
}

#intro-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    z-index: 2;
    margin-right: 580px;
}

#intro-description {
    line-height: 195.7%;
    white-space: pre-line;
}

#doc-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

#start-button {
    background: #FF3366;
    border-radius: 4px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.0125em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 8px 16px;
    margin-top: 20px;;
}

.warning {
    text-transform: uppercase;
    border: 1px solid #FF3366;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 8px 16px;
    letter-spacing: 0.0125em;
}

.warning > span {
    padding: 16px;
    color: #FF3366 !important;
    font-weight: 500;
}


@media (max-width: 1200px) {
    #doc-photo {
        opacity: 15%;
        filter: grayscale(100%);
        display: none;
    }

    #intro-container {
        margin-right: unset;
    }

    #intro {
        align-items: center;
    }
}

@media (max-width: 800px) {
    #doc-photo {
        right: auto;
    }

    #intro-container {
        align-items: center;
    }
}