body {
    background-color: rgb(251, 251, 251);
}

#MAIN_bgWrapper {
    background-image: url('../../asset/img/bg-home.png');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: black;
    text-align: center;
    padding: 20px;
    background: rgba(240, 240, 240, 0.5);
    border-radius: 10px;
    width: 90%;
}

.columns {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

.column {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.column h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6a0a0b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #6a0a0b;
}