*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    overscroll-behavior: none;
    background-color: #222222;
}
section{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to top right, #000000, #444444);
}
.col{
    display: inline;
    font-size: 8vw;
    text-align: center;
    color: #FFFFFF;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
@media only screen and (max-width:600px){
    .col{
        display: block;
        font-size: 16vw;
        text-align: center;
        color: #FFFFFF;
    }
}