*{
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Dongle', sans-serif;
    background: #a770ef; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #a770ef, #cf8bf3, #fdb99b); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #a770ef, #cf8bf3, #fdb99b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
}

/*---------------INDEX+HEADER+FOOTER---------------*/
@media screen and (max-width: 600px) {
    .universal-header{
        justify-content: center;
    }
}
@media screen and (min-width: 600px) {
    .universal-header {
        justify-content: start;
        padding-left: 25px;
    }
}

body {
    font-size: 34px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.universal-header {
    display: grid;
    grid-auto-flow: row;
    text-align: center;
    background: #1b1b1b;
}
.universal-header h2 a {
    color: white;
    text-decoration: none;
    transition-duration: 0.07s;
}
.universal-header h2 a:hover {
    color: gold;
}

.universal-footer {
    text-align: right;
    margin-top: auto;
    padding-right: 25px;
    background: linear-gradient(to right, #1b1b1b00, #1b1b1b);
    font-size: 20px;
}

.i-main {
    display: grid;
    margin-bottom: 40px;
    grid-auto-flow: row;
    justify-content: center;
}
.i-main div {
    padding-top: 20px;
}
.i-main div p a {
    color: white;
    text-decoration: none;
    transition-duration: 0.07s;
}
.i-main div p a:hover {
    color: gold;
}

/*---------------DOWNLOAD---------------*/
.download-main {
    display: grid;
    grid-auto-flow: row;
    justify-content: center;
    text-align: center;
}
.download-main div {
    padding-top: 40px;
}

.store-badge-google {
    display: grid;
    justify-content: center;
    margin-top: 20px;
    border-radius: 13px;
}

.store-badge-apple {
    display: grid;
    justify-content: center;
    margin-top: 10px;
    border-radius: 13px;
}

@media screen and (max-width: 600px) {
    .store-badge-google img {
        width: 170px;
    }
    .store-badge-apple img {
        width: 149px;
    }
}
@media screen and (min-width: 600px) {
    .store-badge-google img {
        width: 220px;
    }
    .store-badge-apple img {
        width: 193px;
    }
}
