@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-top: 20px;
    color: #cdd6f4;
    text-align: center;
    overflow-wrap: break-word;
}

input {
    border-radius: 0.75em;
    display: flex;
    width: 180px;
    height: 30px;
    outline: none;
    border-style: solid;
    border-color: oklch(65% 0.15 225);
    justify-content: center;
    font-size: 150%;
    margin: auto;
    margin-top: 20px;
    font: inherit;
    padding: 20px;
    resize: none;
    background-color: #313244;
    color: #cdd6f4
}

div {
    height: 100%;
    width: 100%;
    position: fixed;
    margin: auto;
    align-content: center;
    justify-content: center;
}

button {
    border-radius: 0.75em;
    background: linear-gradient(25deg, oklch(65% 0.15 165), oklch(65% 0.15 225));
    border: none;
    color: #313244;
    height: 50px;
    width: 200px;
    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 */
}

#mode {
    background: none;
    border: none;
    color: white;
}