body{
    font-family: Arial, sans-serif;
    background-color: #36454f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container{
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px black;
    text-align: center;
    width: 300px;
}

textarea{
    width: 100%;
    height: 100px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button{
    background-color: #708090;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover{
    background-color: #7f97a1;
}

.excuse-output{
    margin-top: 20px;
    font-weight: bold;
    color: #333;
}