body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #242424;

    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1, p {
    color: #00da24;
}

input{
    padding: 10px;
    font-size: 16px;
    width: 200px;
    border: 1px solid #00da24;
    background-color: #353535;
    color: white;
    border-radius: 50px;
    outline: none;
}

button {
    padding: 10px;
    width: 100px;
    font-size: 16px;
    background-color: #148d0b;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition-duration: 0.3s;
}

button:hover {
    background-color: #00b929;
    transform: scale(1.05);
}