@font-face {
    font-family: 'rubik-regular';
    src: url('fonts/rubik/Rubik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'rubik-medium';
    src: url('fonts/rubik/Rubik-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'rubik-bold';
    src: url('fonts/rubik/Rubik-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'rubik-black';
    src: url('fonts/rubik/Rubik-Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
html, body {
    width: 100%;
    height: 100%;
}
body {
    align-items: stretch;
    background-color: #262626;
    color: white;
    display: flex;
    flex-direction: column;
    font-family: 'rubik-regular', sans-serif;
    font-size: 20px;
}
a {
    color: white;
}
.mainContent {
    flex-grow: 1;
}
footer {
    background-color: #009376;
    color: #00DDB1;
    flex-shrink: 0;
    font-size: 20px;
    margin-top: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
}
footer a {
    color: #00DDB1;
}
footer a:hover {
    color: #7EE0C8;
}
h2 {
    font-family: 'rubik-bold', sans-serif;
    font-size: 30px;
    padding: 15px;
    text-align: center;
}
#mainDescription {
    text-align: center;
}
#mainLogo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 80%;
}
.screenshots img {
    width: 100%;
    max-height: 100%;
}
.buttonLink {
    align-items: center;
    background-color: #7EE0C8;
    border-radius: 20px;
    color: #004338;
    display: flex;
    font-family: 'rubik-medium', sans-serif;
    font-size: 35px;
    height: 70px;
    justify-content: center;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.25s ease;
}
#downloadButton {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
@media (max-width: 499px) {
    #downloadButton {
        font-size: 25px;
        width: 80%;
    }
    #mainLogo {
        width: 80%;
    }
    .screenshots {
        grid-row-gap: 20px;
        grid-template-columns: 1fr;
    }
}
@media (min-width: 500px) {
    #downloadButton {
        font-size: 35px;
        min-width: 300px;
        width: 20%;
    }
    #mainLogo {
        width: 40%;
    }
    .screenshots {
        grid-column-gap: 20px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
#downloadButton:hover {
    background-color: #99eed9;
}
#downloadButton:active {
    background-color: #62ccb2;
}
.platform {
    font-size: 18px;
}
#discordIcon {
    height: 25px;
    margin-right: 5px;
    position: relative;
    top: 5px;
    width: 25px;
}
#emailIcon {
    height: 25px;
    margin-right: 5px;
    position: relative;
    top: 5px;
    width: 25px;
}

.coloredText {
    color: #009376;
    color: #3900B2;
}
.coloredBackground {
    color: #00DDB1;
    color: #A286FF;
}