body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Images/bg.png");
    background-size: cover;
    filter: blur(4px);
    z-index: -1;
}

body.white::before {
    filter: blur(4px) invert(1);
}

.welcome-section {
    text-align: center;
    margin-top: 100px;
    font-size: 25px;
}

.welcome-section h1 {
    font-size: 50px;
    color: #d5d5d5;
    font-family: "Concert One", sans-serif;
}

.welcome-section p {
    font-family: "Slabo 27px", serif;
    margin-top: 20px;
}

.board-buttons {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.board-button {
    width: calc(33.33% - 20px);
    max-width: 300px;
    height: 200px;
    margin: 10px;
    text-align: center;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    transition: transform 0.2s, background-color 0.3s;
    text-decoration: none;
}

.board-button:hover {
    transform: scale(1.05);
    background-color: #3c3b3b;
    border-radius: 10px;
}

.board-button:hover .board-title {
    color: #ffffff !important;
}

.board-button .board-name {
    text-align: center;
}

.board-icon img {
    width: 100px;
    height: 100px;
    margin-top: 20px;
}

.board-name {
    font-family: "Merriweather", serif;
    font-size: 35px;
    margin-top: 10px;
}

.board-title {
    color: white;
    transition: color 0.3s;
}

@media screen and (max-width: 768px) {
    .board-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .board-button {
        width: calc(100% - 20px);
    }
}

@media screen and (max-width: 1024px) {
    .board-button {
        width: 100%;
    }
}