@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wdth,wght@0,6..12,95,200..1000;1,6..12,95,200..1000&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

body {
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: #1e1e2e;
    /*background-image: url("bg.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;*/
}

h1 {
    font-weight: 500;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 20px;
    color: #cdd6f4;
    text-align: center;
}

button {
    border-radius: 0.75em;
    background: linear-gradient(25deg, #a6e3a1, #94e2d5);
    border: none;
    color: #313244;
    height: 50px;
    min-width: 300px;
    width: 30vw;
    font: inherit;
    font-size: 150%;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
    margin: auto;
    margin-top: 20px;
}

button:hover {
    transform: scale(1.1);
    /* Vergrößert den Button um 10% */
}

button:active {
    transform: scale(0.95);
    /* Effekt beim Draufklicken: Button wird kurz kleiner */
}

#container {
    width: auto;
    height: 80vh;
    position: fixed;
    inset: 0px;
    width: 100vw;
    max-height: 100dvh;
    margin: auto;
    background-color: #1e1e2e;
    align-content: center;
    box-shadow: 0px 0px 20vh #89dceb;
}

#learn {
    background: linear-gradient(25deg, #cba6f7, #94e2d5);
}


#create {
    background: none;
    font-size: 125%;
    margin-top: 10px;
    font-weight: 400;
    border: solid #89dceb;
    color: #89dceb
}