body {
    margin: 0;
    padding: 0;
    background-color: #000;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    color: white;
}
#header {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border-radius: 0 0 50px 50px;
}

#gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#gallery2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.8s ease-in-out;
}

button {
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 100px;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.info {
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
    font-size: 16px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    z-index: 1000;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

#title {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 30px;
    z-index: 50;
}

#splash-text {
    font-family: 'Minecraft', sans-serif;
    position: absolute;
    font-weight: lighter;
    top: 10%;
    right: -20%;
    color: rgb(255, 255, 0);
    font-size: 24px;
    z-index: 100;
    animation: pulse 2s infinite ease-in-out;
}

button {
    border: none;
    border-radius: 5px;
    padding: 15px;
    margin:  0 15px 0 0;
    cursor: pointer;
    vertical-align: middle;
    height: 50px;
    background-color: aqua;
    font-weight: bold;
}
section {
    padding: 30px;
    margin: 20px;
}
@keyframes pulse {
    0%, 100% {
        font-size: 16px;
        transform: scale(1) translateX(-50%) rotate(45deg);
    }
    50% {
        font-size: 18px;
        transform: scale(1.3) translateX(-50%) rotate(45deg);
    }
}

#about-links {
    margin-top: 15px;
    display: flex;
    /* justify-content: space-between; */
    width: 100%;
}