* {
    font-family: monospace;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    padding: 0;
    margin: 0;
    background: #0f0f0f;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main {
    width: 20vw;
    min-width: 500px;
    height: 30vh;
    min-height: 200px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

#main h1 {
    font-size: 34px;
}

input[type="button"] {
    width: 60%;
    height: 13%;
    border-radius: 100px;
    background-color: #6f39b6;
    border: 0;
    color:white;
    font-size: 100%;
    
}

input[type="button"]:hover {
    background-color: #552e94;
    cursor: pointer;
}

input[type="button"]:active {
    background-color: #4e268a;
}
