body {
    background-color: #2c2c2c; /* Dark grey background */
    font-family: Verdana, sans-serif; /* Changed to Verdana */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

.logo {
    max-width: 200px; /* Adjust the size as needed */
    margin-bottom: 20px;
}

h1 {
    font-size: 1.0em; /* Reduced font size */
    color: #ffa500; /* Orange text */
    font-weight: bold; /* Made text bold */
}

p {
    color: #c5c5c5; 
    background-color: #2c2c2c;
}

button {
    color: #ffa500; 
    background-color: #2e2e2e;
    border: 1px solid #ffa500; 
    border-radius: 5px;
    padding: 10px 20px; 
    font-size: 13px; 
    font-weight: bold; 
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

button:hover {
    background-color: #ffa500;
    color: #414141; 
    border-color: #ffa500;
}

button:focus {
    outline: none; 
    box-shadow: 0 0 5px #b37400; 
}
