.intro {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../../images/intro/bg.png');
    background-size: 100%;
    padding-top: 65px !important;
    background-size: cover;
}

@media (min-width: 1024px) and (min-height: 700px) {
    .intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    } 
}

.intro__title {
    font-size: 48px;
    margin: 0;
    color: var(--color-text-secondary);
    text-align: center;
}

@media (min-width: 1024px) and (min-height: 600px) {
    .intro__title {
        font-size: 80px;
    }
}

@media (min-width: 1024px) and (min-height: 700px) {
    .intro__title {
        font-size: 100px;
        margin: 0;
    }
}

.intro__subtitle {
    font-size: 32px;
    background: linear-gradient(90deg, rgba(219, 34, 44, 1) 55%, rgba(13, 102, 208, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin: 0 auto;
    width: max-content;

    font-weight: bold;
    display: block;
    margin-top: 0;
    margin-bottom: 0.83em;
    line-height: 1.2
}

@media (min-height: 600px) {
    .intro__subtitle {
        margin: 30px auto;
    }
}

@media (min-width: 1024px) and (min-height: 600px) {
    .intro__subtitle {
        margin-top: 0;
        font-size: 60px;
    }
}

@media (min-width: 1024px) and (min-height: 700px) {
    .intro__subtitle {
        margin-top: 0;
        font-size: 90px;
    }
}

.intro__slogan {
    font-size: 16px;
    text-align: center;
}

@media (min-width: 1024px) and (min-height: 700px) {
    .intro__slogan {
        font-size: 30px;
        margin-bottom: 45px;
    }
}

.intro__link {
    cursor: pointer;
    background-color: var(--color-background-secondary);
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 auto;
    margin-top: 20px;
    display: block;
    max-width: max-content;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid #D0D0D0;
}

@media (min-width: 1024px) and (min-height: 700px) {
    .intro__link {
        font-size: 25px;
        padding: 15px 45px;
        margin-top: 45px;
    }
}

.typewriter h2::after {
    content: ' ';
    display: inline-block;
    width: 5px;
    height: 40px;
    margin-bottom: -10px;
    margin-left: 5px;
    background-color: #0D66D0;
    border-radius: 5px;
    animation:
        blink-caret 0.75s step-end infinite;
}

@media (min-width: 600px) {
    .typewriter h2::after {
        height: 40px;
        margin-bottom: -10px;
    }
}

@media (min-width: 1024px) and (min-height: 700px) {
    .typewriter h2::after {
        height: 90px;
        margin-bottom: -10px;
    }
}

@keyframes blink-caret {
    from,
    to {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}