body {
    background-color: #474747;
    font-family: Arial, sans-serif;
}

button {
    margin-top: 10px;
    font-size: 16px;
    padding: 1em 2.5em 1em 2.5em;
    min-width: 150px; /* Festlegen einer Mindestbreite für den Button (ursprüngliche Breite) */
    border: none;
    background: #fff;
    transition: all 0.1s linear;
    box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.1);
    margin-left: auto;
    position: relative;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 20px;
}


button:active {
    transform: scale(0.95);
}

button span {
    color: #464646;
}

button .border {
    position: absolute;
    border: 0.15em solid #fff;
    transition: all 0.3s 0.08s linear;
    top: 50%;
    left: 50%;
    width: 9em;
    height: 3em;
    transform: translate(-50%, -50%);
    z-index: -1; /* Ändern Sie die z-index auf -1, um die Border unter dem Button anzuzeigen */
}

button:hover .border {
    display: block;
    width: 9.9em;
    height: 3.7em;
}

.full-rounded {
    border-radius: 2em;
}

#main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

#Start_Screen {
    width: 500px;
    background-color: #c0c0c0;
    border-radius: 20px;
    padding: 20px;
    text-align: left;
}

#Start_Screen #title {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
    font-family: fantasy;
    letter-spacing: 3px;
    font-size: 80px;
}

#Start_Screen #subtitle {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    font-family: fantasy;
    letter-spacing: 2px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
    font-size: 16px;
}

strong {
    font-weight: bold;
}
