/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Welcome Message Styles */
#username, #token {
    color: #3498db;
}

/* Home Button Styles */
#homeBut {
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    padding: 10px 15px;
    border: 2px solid #3498db;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
}

#homeBut:hover {
    background-color: #2980b9;
}
