* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Encode Sans Semi Condensed', sans-serif;
    margin-top: 70px;
    background-color: #282c34;
}

h1 {
    text-align: center;
    color: #2ec0d3;
    font-size: 3em;
}

h1, h2:hover {
    cursor: default;
}

.hex {
    font-family: 'Press Start 2P', cursive;
    color: #ffffff;
}

h2 {
    text-align: center;
    color: #ffffff;
    font-weight: 100;
    font-size: 2.2em;
    margin-top: 20px;
}


.grid {
    text-align: center;
    max-width: 1080px;
    margin: 60px auto 20px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
}
  
.col {
    padding: 40px 0;
    font-size: 1.2em;
    color: #282c34;   
    font-weight: 900;
    transition: color .5s;
}

.col:hover {
    cursor: pointer;
    color: #ffffff; 
    background-image: linear-gradient(#00000050, #5f5f5f50);
}