body{
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    letter-spacing: .3em;
    background: linear-gradient(to left, #2B5261,#7E436C);
    color: rgb(211, 211, 211);
    
}
main{
    display: grid;
    align-content: center;
    height: 800px;
    padding: 10px;
}
h1{
    font-size: 50px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    h1{
        font-size: 30px;
    }
    main{
        height: 400px;
    }
}