body {
    background: url('assets/background.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    cursor: url('assets/cursor.png'), auto;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 550px; /* Feste Breite der Box */
    margin: 50px auto; /* Zentrieren der Box horizontal und Anpassen des oberen Abstands */ 
    min-height: 150px;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(0, 0, 0, 10.5); /* Fügt einen leichten Glow-Effekt hinzu */
}

.icon-container {
    width: 100%; /* Container-Weite auf 100% setzen */
    margin-bottom: 10px; /* Abstand unter dem Icon-Container */
}

.icon {
    width: 40px; /* Größe des Icons anpassen */
    height: 40px;
    margin-bottom: -25px;
}

.title {
    font-family: 'MinecraftiaRegular';
    font-weight: normal;
    font-style: normal;
    font-size: 30px; /* Textgröße für den Namen anpassen */
    margin-bottom: 0; /* Abstand unter dem Namen entfernen */
    letter-spacing: -1px;
}

.text {
    font-family: 'MinecraftiaRegular';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    margin-top: 5px; /* Abstand über dem Text anpassen */
    margin-right: 5px; /* Abstand rechts vom Text anpassen */
    letter-spacing: -1px;
    width: fit-content;
    border-right: 5px solid;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-left: 0;
}

.separator {
    width: 80%; /* Breite des Trennungsstrichs anpassen */
    border-bottom: 4px solid #000000; /* Farbe des Trennungsstrichs anpassen */
    margin: 10px auto; /* Abstand über und unter dem Trennungsstrich anpassen */
    margin-left: 0; /* Linken Rand auf 0 setzen */
}

#bitcoinDiv {
    position: relative;
    display: flex;
    align-items: center
} 
 
#bitcoinDiv .tooltip {
    position: absolute;
    display: none;
    background-color: transparent; /* Set background color to transparent */
    color: #000000;
    padding: 5px;
    border-radius: 3px;
    top: -40px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    font-family: 'MinecraftiaRegular';
    font-weight: normal;
    font-style: normal;
    font-size: 12px; /* Textgröße für den Namen anpassen */
    margin-bottom: 0; /* Abstand unter dem Namen entfernen */
    letter-spacing: -1px;
    white-space: nowrap; /* Prevent line breaks */

    /* Arrow styles */
    &::before {
        content: "";
        position: absolute;
        bottom: -10px; /* Adjust arrow position */
        left: 50%;
        transform: translateX(-50%);
        border-width: 0 5px 5px;
        border-style: solid;
        border-color: transparent transparent #000000; /* Transparent border for arrow */
    }
}

#bitcoinDiv.clicked .tooltip {
    display: inline-block;
}

.buttons a {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.buttons a:hover {
    transform: scale(1.1); /* Ändern Sie die Skalierung nach Bedarf */
}

.buttons a img {
    width: 30px;
    height: 30px;
    transition: filter 0.3s ease-in-out;
}

.buttons a:hover img {
    filter: brightness(1.5); /* Ändern Sie den Helligkeitswert nach Bedarf */
}

.buttons img {
    width: 100%; /* Make images fill the entire width of the button */
}

#bitcoinDiv {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

#bitcoinDiv:hover {
    transform: scale(1.1);
}

#bitcoinDiv img {
    width: 30px;
    height: 30px;
    transition: filter 0.3s ease-in-out;
}

#bitcoinDiv:hover img {
    filter: brightness(1.5);
}

body {
    margin: 0;
    overflow: hidden;
}

.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 9999;
}

.enter-button {
    cursor: pointer;
    background: none;
    border: none;
    color: #000000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateX(-50%);
    font-family: 'MinecraftiaRegular';
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -1px;
    transition: all 0.3s ease-in-out;

    /* Random movement */
    animation: moveRandomly 5s infinite;
}

/* Add keyframes for random movement */
@keyframes moveRandomly {
    0% {
        transform: translateX(-50%) translateY(-50%);
    }
    25% {
        transform: translateX(calc(-50% - 5px)) translateY(calc(-50% - 5px));
    }
    50% {
        transform: translateX(-50%) translateY(-50%);
    }
    75% {
        transform: translateX(calc(-50% + 5px)) translateY(calc(-50% + 5px));
    }
    100% {
        transform: translateX(-50%) translateY(-50%);
    }
}

/* Hover effect for growing */
.enter-button:hover {
    transform: translateX(-50%) scale(1.2);
}

.main-content {
    display: none;
    color: #fff; /* Set text color for main content */
}