body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;

    padding-top: 40px;
}

h1{
color: #000000;
    font-family: sans-serif;
    font-size: 2.5em;
    margin: 20px 0;
}

@media only screen and (min-width: 800px) {
    main {
        display: grid;
        grid-template-columns: repeat(8, 100px);
        grid-template-rows: repeat(5, 100px);
    }
}
@media only screen and (max-width: 800px) and (min-width: 550px) {
    main {
        display: grid;
        grid-template-columns: repeat(5, 100px);
        grid-template-rows: repeat(8, 100px);
    }
}

@media only screen and (max-width: 550px) {
    main {
        display: grid;
        grid-template-columns: repeat(4, 100px);
        grid-template-rows: repeat(10, 100px);
    }
}

.cell{
    border-radius: 20px;
    margin: 5px;
}

.cell > img {
    border-radius: 20px;
}

.bigIcon > img{
    height: 190px;
    width: 190px;
}

.bigIcon{
    grid-area: span 2 / span 2;
}

.smallIcon > img{
    height: 90px;
    width: 90px;
}

a {
    transition-duration: 0.3s;
}

.notification {
    position: absolute;

    bottom: 20px;

    height: 30px;
    width: 300px;

    transform: translateY(20px);
    opacity: 0;
    transition-duration: 1s;

    background-color: #b39700;
    color: black;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 1em;

    cursor: default;


    border-radius: 20px;
}