main {
    display: flex;
    flex-direction: column;
}

.welcome-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 100vh;
}

.welcome-container .welcome-text {
    flex: 1;
    display: flex;
    flex-direction: row;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
    background: #3B38A4;
    min-height: 100vh;
    flex-wrap: wrap;
}

.welcome-text .content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.welcome-container .welcome-text h1 {
    font-family: "Limelight", sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 2.5em;
    color: white;
}

.welcome-container .welcome-text h2 {
    color: white;
}

.yellow-btn {
    display: inline-block;
    background: #DAD534;
    color: black;
    padding: 0.5rem;
    width: fit-content;
}

.welcome-img {
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.welcome-img img {
    width: 100%;
}


@media (max-width: 950px) {

    .welcome-container .welcome-text {
        padding: 0.5rem;
        width: auto;
    }

    .welcome-img img {
        width: auto;
    }
}


