
@font-face {
    font-family: 'RunescapeFont';
    src: url('runescape_uf.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    background: url('runescape_stone_wall.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'RunescapeFont', sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(245, 222, 179, 0.85);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 0 20px #FFD700;
    text-align: center;
}

.main-text {
    font-size: 48px;
    color: #FFD700;
    text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 20px #FFD700;
    animation: glow 2s infinite alternate;
    margin-bottom: 20px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #FFD700;
    }
    to {
        text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700, 0 0 40px #FFD700;
    }
}

.login-button {
    font-size: 24px;
    padding: 10px 20px;
    background-color: #222;
    color: white;
    border: 2px solid #FFD700;
    border-radius: 10px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #444;
}

.dancing-gnome {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 120px;
    height: auto;
}
