body {
    background-image: url("../img/kleinergedanke.png");
    background-size: cover;
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;

    display: grid;
    place-items: center;
}

@font-face {
    font-family: 'Minecraft';
    src: url('../styles/MinecraftRegular-Bmg3.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.buttons {
    display: flex;
    align-content: center;
    gap: 20px;
    margin-top: 400px;
    margin-left: 80vh;

}

a {
    text-decoration: none;
    color: inherit;
}

button {
    height: 70px;
    width: 30vh;
    background: linear-gradient(to right, #00fbf9, #02fd01);
    border: 3px solid black; /* ✅ richtige Umrandung */
    border-radius: 10px;
    outline: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.1);
    color: black;
    font-size: 32px;
    font-weight: 400;
    font-family: 'Minecraft', sans-serif;
}

button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    cursor: pointer;
}
