/* Ensure body and html take full height */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.title {
    font-family: var(--main-font-bold);
    text-align: center;
}


/* Centered paragraph */
.content {
    color: var(--bs-gray-600);
    text-align: justify;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 5px 20px;
}

.content-1 {
    border-radius: 1rem 1rem 0 0;
    z-index: 9;
    position: relative;
}

.content-2 {
    box-shadow: -3px 4px 10px 0px #000000;
    border-radius: 1rem 0 1rem 1rem;
}

@media (max-width: 991px) {
    .content {
        position: unset;
        transform: none;
        margin: 0 auto;
    }
}

.home-bg {
    background-image: url(../img/home/doodle.png);
    position: absolute;
    top: -50% !important;
    bottom: -50% !important;
    left: 0;
    right: 0;
    background-repeat: round;
    opacity: .3;
}