html,body{
    width: 100%;
    height: 100%;
}

body{
    background-color:black;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
}

#canvas {
    width:1366px;
    height:600px;
    position:relative;
    overflow: hidden;
    padding:50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


#heading{
    font-family: 'Playfair Display SC', serif;
    color:white;
    font-weight: normal;
    font-size: 32px;
}

p{
    color: #00fffa;
    background: black;
    padding: 10px;
    max-width: 400px;
    line-height: 1.5;
    font-family: 'Overpass Mono', monospace;
}

input{
    font-size: 24px;
    border: none;
    border-bottom: 1px solid #e3e3e3;
    color:white;
    height: 45px;
    background: transparent;
    font-weight: lighter;
}

input:focus{
    outline: none;
}

button{
    border: 1px solid #333;
    outline: none;
    min-width: 120px;
    height: 45px;
    font-size: 22px;
    background: white;
}

button:hover{
    cursor: pointer;
    border: 2px solid #000;
}