*,::after,::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    background: linear-gradient( rgba(30,30,30) 0%, #000000 100%);
    background-repeat:no-repeat;
    width:100vw;
    height:100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main {
    display:flex;
    flex-direction: column;
    gap:10px;
    text-align: center;
    margin-top: -30px;
}

.textbox {


    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    border-radius: 20px;
    background-color: rgb(41, 42, 42);

    padding: 20px;

    max-width:300px;
    margin:auto;
    
    

    font-size: 20px;
    color:white;
}

.button {
    margin:auto;
    width:200px;
    padding:10px;
    margin-top:10px;
    background-color: #555659;
    border: rgba(163, 144, 144, 0.2);
    border-radius:12px;
    display:flex;
    justify-content: center;
    color: #f5f5f5;
    cursor:pointer;
}