/* This is a desktop only project, no need of media */
@import url(https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap);

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

body{
    background-color: #222;
    font-family: 'Press Start 2P', cursive;
}


/*--------------Typography--------------*/
.title-color{
    color: green;
}

h1{
    text-align: center;
    text-shadow: black 1px 5px;
    font-size: 2.4rem;
}

h2, h3, p {
    color: #f1f1f1;
    text-align: center;
    line-height: 1.8rem;
    letter-spacing: 2px;
}

h2{
    font-size: 1.5rem;
    margin-bottom: 60px;
}

h3{
    font-size: 1rem;
    margin-bottom: 50px;
}

p{
    font-size: 0.8rem;
}

a{
    text-decoration: none;
    color: snow;
    font-weight: bold;
    border-bottom: white 2px dotted;
}



/*--------------All web Design-----------------*/
main{
    margin: 10vh auto;
    padding: 1rem;
    max-width: 80vw;
}

header{
    padding-bottom: 50px;
    margin: 20px auto;
    border-bottom: green solid 5px;
    box-shadow: black 0px 4px;
    max-width: 800px;
    max-height: 40px;
}

section{
    display: flex;
    flex-direction: column;
}

footer{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-color: #111;
}

canvas{
    display: block;
    margin: 0 auto 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.grid-item {
    display: block;
    border: none;
    text-align: center;
}