* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(83, 10, 83);
}

.container {
    text-align: center;
    position: relative;
    z-index: 10;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: aliceblue;
}

p {
    font-size: 1.2rem;
    color: aliceblue;
    margin-bottom: 2rem;
}

.scene {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    padding: 2rem;
}

.sun {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #FFD700;
    border-radius: 50%;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.3);
    }
}