@font-face {
    font-family: 'Fortnite';
    src: url('assets/fortnite-font.ttf?v=1') format('truetype');
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: 'Fortnite', sans-serif;
    margin: 0;
    background-image: url('assets/wallpaper-1.jpg');
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.title {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    background-color: #5FCEEA;
    padding: 10px 20px;
    border-radius: 5px;
    letter-spacing: 0.1em;
}

.container {
    position: relative;
    text-align: center;
    height: 100%;
    width: 100%;
}

#instruction {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#steve {
    width: 500px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bubble {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 400px;
    padding: 30px;
    background: white;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s;
    display: none;
}

.small-bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.small-bubble:nth-child(1) {
    top: 20%;
    right: 15%;
}

.small-bubble:nth-child(2) {
    top: 30%;
    right: 20%;
}

.small-bubble:nth-child(3) {
    top: 40%;
    right: 25%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#quote {
    margin: 0;
    font-family: 'Fortnite', sans-serif;
    font-size: 1.5em;
}

.music-toggle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.music-toggle img {
    width: 40px;
    height: 40px;
}
