body {
    background-image: url('bg.png');
    background-attachment: fixed;
    background-size: cover;
    color: #FFD700;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    margin: 0;
}

#welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

#welcome h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

#welcome p {
    font-size: 18px;
    opacity: 0.7;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-color: #FFD700 #000;
    scrollbar-width: thin;
    scrollbar-3dlight-color: #000;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.app-box {
    background-color: #111;
    padding: 30px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    transition: 0.3s;
}

.app-box:hover {
    background-color: #FFD700;
    color: #000;
}

.app-box a {
    text-decoration: none;
    color: #FFD700;
    font-weight: bold;
}

.app-box:hover a {
    color: #000;
}

button {
    background-color: #ddbc03;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover {
    background-color: #000;
    color: #FFD700;
}
.custom {
    color: #FFD700;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
}