body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1b2838;
}

* {
    box-sizing: border-box;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;    
}

#content {
    width: 1024px;
    margin-left: calc((100vw - 1024px) / 2);
}

input[type=text] {
    border: 0;
    color: white;
    padding: 5px 20px;
    font-size: 30px;
    border-radius: 0;
    text-align: center;
    font-weight: 900;
    transition: border-radius 0.25s, background-color 0.25s, box-shadow 0.25s, border-bottom 0.25s;
    border-bottom: 1px solid rgb(93,120,191);
    background-color: #1b2838;
    width: 100%;
}

input[type=text]:focus {
    box-shadow: 0px 0px 30px 0px rgba(93,120,191,0.73);
    background-color: #101822;
    border-radius: 10px;
    border-bottom: 1px solid #101822;
}

::selection {
  color: white;
  background-color: #1b2838;
}

input[type=text]::placeholder {
    font-weight: 400px;
    color: #2b3f58;
}

table {
    color: white;
}