body {
    background-color: black;
    margin: auto;
}

p, h1, h2, h3, li, table{
    font-family: 'Inconsolata', sans-serif;
}

.header {
    display: flex;
    justify-content: center;
    background-color: white;
    color: black;
}

.header p {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

.title {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 600px) {
    .logo {
        width: 60%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 25%;
        margin-bottom: 25%;
    }

    .logo-mobile {
        display: none;
    }

    .main {
        margin: 0 10% 0 10%;
    }

    .about {
        padding: 90px 20px 100px 20px;
    }

    .about p {
        width: 90%;
        padding: 50px 0 0 0;
    }

    .about table {
        width: 90%;
        padding: 50px 0 0 0;
        font-size: 18px;
    }

    .about td {
        padding-right: 30px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .winner {
        padding-left: 30px;
        text-align:right;
    }

    .tab {
        height: 220px;
        padding: 75px 0 10px 0;
    }

    .shop, .github {
        width: 50%;
    }

    .github {
        border-right: solid 1px white;
    }

    #copyright {
        text-align: left;
    }
    
    #brand {
        text-align: right;
    }
}

@media screen and (max-width: 600px) {
    .logo-mobile {
        width: 95%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 90%;
        margin-bottom: 90%;
    }

    .logo {
        display: none;
    }

    .main {
        margin: 0 5% 0 5%;
    }

    .about {
        padding: 75px 5px 75px 5px;
    }

    .about h2 {
        font-size: 40px;
        text-align: center;
    }

    .about p {
        width: 90%;
        padding: 40px 0 0 0;
    }

    .about table {
        width: 100%;
        padding: 40px 0 40px 0;
    }

    .about td {
        padding: 10px 5px 20px 5px;
        line-height: 150%;
        font-size: 18px;
    }

    .winner {
        display: none;
    }

    .tab, .footer {
        flex-direction: column;
    }

    .shop, .github {
        width: 60%;
        padding: 75px 0px 75px 0px;
    }

    .github {
        border-bottom: solid 1px white;
    }

    .header {
        padding: 0 20px 0 20px;
        line-height: 125%;
    }
    
    .footer {
        margin: 10px 0 10px 0;
    }

    #copyright {
        text-align: center;
        margin: 5px;
    }
    
    #brand {
        text-align: center;
        margin: 5px;
    }
}

.about {
    color: white;
    border-top: solid 1px white;
}

.about table {
    margin: auto;
}

.about tr:hover {
    font-weight: 700;
}

.about a {
    color: white;
    text-decoration: none;
}

.about p {
    margin: auto;
    line-height: 150%;
    text-align: justify;
}

.tab {
    display: flex;
    justify-content: space-evenly;
    color: white;
    width: 100%;
    align-items: center;
}

.tab h3 {
    transition: transform 0.5s;
    font-size: 24px;
}

.tab h3:hover {
    transform: scale(1.15);
}

.tab a {
    color: white;
    text-decoration: none;
}

.tab svg {
    transition: transform 0.3s;
}

.tab svg:hover {
    transform: scale(1.15);
}

.shop, .github{
    text-align: center;
    flex-grow: 1;
}

.footer {
    display: flex;
    justify-content: space-between;
    color: white;
    padding: 0 10% 0 10%;
    font-size: 12px;
}

.footer p {
    flex-grow: 1;
}

.footer a {
    color: white;
}