.terminal {
    background-color: #1e1e1e;
    color: #ffffff;
    border-radius: 8px;
    max-width: 100%;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    position: relative;
}

.terminal::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #8e4bfb;
    border-radius: 50%;
    box-shadow: 1.2rem 0 0 #8e4bfb, 2.4rem 0 0 #8e4bfb;
}

.line {
    padding-top: 10px;
    font-size: 1.3rem;
}

.prompt {
    color: #8e4bfb;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.1rem;
    background-color: #ffffff;
    margin-left: 5px;
    margin-bottom: -2px;
    animation: blink 1s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.terminal .line:first-child {
    margin-top: 10px;
}

.main-title-container {
    margin-top: 200px;
}

.main-title-container .main-title-left p {
    margin-top: 30px;
}

.main-title-container .get-started-btn {
    border: 1px solid #8537ff;
    background-color: #8537ff;
    border-radius: 30px;
    width: 50%;
}

.main-title-container .get-started-btn:hover {
    border: 1px solid #a56dff;
    background-color: #a56dff;
}

.title-header-color {
    color: #8537ff;
    text-decoration-line: underline;
    text-underline-offset: 10px;
}

.main-title-left p {
    font-size: 1.9rem;
    font-weight: bold;
}

.main-title-left h1 {
    font-size: 3.8rem;
}

.main-title-left img {
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .main-title-container {
        margin-top: 150px;
    }

    .main-title-left {
        margin-bottom: 70px;
    }

    .main-title-left p {
        font-size: 2.2rem;
    }

    .main-title-left h1 {
        text-align: center;
    }

    .main-title-container .get-started-btn {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .main-title-container {
        margin-top: 50px;
    }
}
