@font-face {
    font-family: Inter;
    src: url(./fonts/Inter.ttf);
}

@font-face {
    font-family: Sora;
    src: url(./fonts/Sora.ttf);
}

body {
    background-color: #FFF;
    font-family: Inter;
    margin: 0;
}

h1 {
    font-family: Sora;
}

.back-button {
    position: fixed;
    top: 3rem;
    background-color: #00ADFA;
    color: #FFF;
    font-family: Inter;
    border-radius: 0 20px 20px 0;
    padding: 10px 20px 10px 10px;
}

.content-container {
    color: #000;
    display: flex;
    width: 650px;
    margin: 150px auto;
}

.content-text {
    margin-right: 5rem;
}

.content-text>p {
    font-size: 14px;
    line-height: 1.6;
}

.store-icon {
    width: 150px;
}

.content-image {
    height: 250px
}

.chrome-download {
    background-color: black;
    color: white;
    height: 45px;
    width: 150px;
    text-align: center;
    line-height: 45px;
    border-radius: 10px;
    border: 1px solid white;
}

/* Media Queries */

@media (max-width: 768px) {
    .content-container {
        margin: auto;
        flex-direction: column-reverse;
    }
    .content-image {
        height: 500px;
        margin: 4rem;
    }
    .content-text {
        margin-right: 0;
        margin: 0 3rem 3rem 3rem;
        text-align: center;
    }
    .content-text>h1 {
        font-size: 3rem;
    }
    .content-text>p {
        font-size: 2rem;
    }
    .store-icon {
        width: 250px;
    }
}
