body {
    background-color: black;
    color: white;
    font-family: 'Avenir', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
}

.name {
    font-size: 1.5em;
    font-weight: thin;
    margin-bottom: 20px;
}

.instructions {
    font-size: 1.2em;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
}

#start-button {
    padding: 10px 20px;
    font-size: 1.2em;
    color: black;
    background-color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#start-button:hover {
    background-color: lightgray;
}

#composition-select {
    padding: 10px 20px;
    font-size: 1.2em;
    color: black;
    background-color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
}

#composition-select:hover {
    background-color: lightgray;
}
