@font-face {
    font-family: Baloo;
    src: url('./fonts/Baloo-Regular.ttf');
}
@font-face {
    font-family: Inter;
    src: url('./fonts/Inter-Regular.ttf');
}
@font-face {
    font-family: Inter;
    font-weight: bold;
    src: url('./fonts/Inter-Bold.ttf');
}

body {
    background: linear-gradient(180deg, #0E3569 0%, #3A88E2 100%);
    margin: 0;
}

.container {
    display: flex;
    padding: 1rem;
}

.logo {
    max-width: 444px;
    width: 100%;
}

/* Tablet and higher */
@media (min-width: 767px) {
    .background {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }
    .background img {
        max-height: 80%;
        width: 50%;
        position: absolute;
        right: 1rem;
        bottom: 0;
    }
    
    .left {
        width: 45%;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .apps {
        display: flex;
        flex-direction: row;
    }
    .apps .app {
        display: flex;
        flex-direction: column;
    }
    .apps .ios, .apps .chrome {
        padding: 14px 0;
    }
    .apps .chrome {
        margin-right: 14px;
    }
    .apps .ios img, .apps .android img {
        filter: opacity(0.5);
    }
    .apps .ios .comingsoon {
        margin: 14px 0;
    }
    .apps .android .comingsoon {
        margin: 0 14px;
    }
}

/* Horizontal phone */
@media (min-width: 478px) and (max-width: 767px) {
    .container {
        flex-direction: column;
    }
    .background {
        width: calc(100% - 1rem);
        flex: 1;
        display: flex;
        justify-content: center;
    }
}

/* Vertical phone */
@media (max-width: 478px) {
    .container {
        flex-direction: column;
        width: 100%;
        padding-bottom: 0;
    }

    h3 {
        line-height: 100%;
    }
    .apps .app {
        margin-bottom: 1rem;
        width: fit-content;
    }
    .apps .ios img {
        margin-bottom: 14px;
    }
    .apps .android img {
        margin-left: -14px;
    }
    .apps .comingsoon {
        width: 100%;
    }
    .apps .app.android .comingsoon {
        width: calc(100% - 14px);
    }
    .background img {
        width: 100%;
    }
}

h1 {
    font-family: Seravek, Arial, Helvetica, sans-serif;
    font-size: 72px;
    color: white;
    margin-bottom: 0;
}

h3 {
    font-family: Baloo, Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0;
}

h4 {
    font-family: Baloo, Arial, Helvetica, sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 0;
    font-weight: normal;
}

h5 {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-top: 0;
    font-weight: normal;
}

p {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: white;
    margin-top: 0;
}
ol, ul {
    margin-top: 0;
}
ol, ul, a, a:visited {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: white;
}

li {
    margin-bottom: 1rem;
}

.comingsoon {
    background-color: #ECF1F4;
    color: #354252;
    border-radius: 4px;
    font-family: Baloo, Arial, sans-serif;
    text-align: center;
}

.partners {
    display: flex;
    margin-top: 1rem;
}
.partners .partner {
    margin-right: 1rem;
}
.partners .partner .comingsoon {
    margin-top: 8px;
}
.partners .partner.campendium img {
    filter: opacity(0.5);
}