.ready-to-create-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 1.5em;
    width: 80%;
    background-color: #E9E4FF;
    border-radius: 3em;
    margin: 0 auto;
    padding: 4em 3em;
    text-align: center;
}

.ready-to-create-section {
    font-size: 16px; 
}

@media (max-width: 1300px) {
    .ready-to-create-section {
        width: 65%;
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    .ready-to-create-section {
        width: 85%;
        font-size: 10px;
    }
}

.ready-to-create-heading {
    font-size: 2em;
    font-weight: 600;
}

.ready-to-create-section>p {
    font-size: 1.25em;
    color: #2D2C2C;
}

.ready-to-create-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1.25em;
}

.ready-to-create-btn-container :nth-child(1) {
    padding: 1em 1.25em;
    background-color: #304DDB;
    border-radius: 0.5em;
    color: #fff;
    font-size: 1.25em;
    font-weight: 600;
    cursor: pointer;
}

.ready-to-create-btn-container :nth-child(2) {
    padding: 1em 1.25em;
    border-radius: 0.5em;
    border: 1.2px solid #000;
    color: #000;
    font-size: 1.25em;
    font-weight: 500;
    cursor: pointer;
}

.ready-to-create-btn-container a {
    transition: all 0.2s linear;
}

.ready-to-create-btn-container a:hover {
    transform: scale(1.04);
}

@media (max-width: 576px) {
    .ready-to-create-btn-container {
        height: 100%;
        width: 100%;
        flex-direction: column;
    }

    .ready-to-create-btn-container :nth-child(1) {
        width: 80%;
        padding: 1.25em;
        font-size: 1.5em;
    }
    
    .ready-to-create-btn-container :nth-child(2) {
        width: 55%;
        padding: 1.25em;
    }
}