* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    color: white;
}
html, body {
    height: 100%;
    width: 100%;
}

body{
    background-color: black;
    overflow: hidden;
}

main{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0E1922;
}

button{
    position: relative;
    padding: 20px 30px;
    background-color: #c23642;
    border-radius: 10px;
    border: 3px solid white;
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
}

button:active{
    scale: 0.95;
}  

h1{
    white-space: nowrap;
}
 