/* MAIN STYLES */

:root {
    --color-primary: #060512;
    --color-secondary: #484848;
    --container-padding: 16px;
}

/* TODO: Remove before release */
.download-button,
.release-notes {
    display: none !important;
}

/*Reset default style*/
* {
    margin: 0;
    padding: 0;
    outline: none !important;
}

*, *:before, *:after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    font-size: 1em;
    line-height: 1.4;
}

body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    font-family: "Onest", sans-serif;
}

body.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.page > main {
    width: 100%;
    flex: 1 0 auto;
}

main {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 80px;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    font-weight: 400;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button{
    -webkit-tap-highlight-color: transparent;
}

.flex-col {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    background: none;
    overflow-x: hidden;
}

.container {
    padding: 0 var(--container-padding);
}

/* COMON SECTION STYLE */
main {
    padding-bottom: 80px;
}
.section-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 130%;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 130%;
    letter-spacing: 0;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-logo {
    width: 42px;
    height: 26px;
}

.card-title {
    font-size: 24px;
    font-weight: 400;
    color: white;
    line-height: 120%;
    letter-spacing: 0;
}

.card-text {
    font-size: 16px;
    font-weight: 400;
    color: white;
    line-height: 130%;
    letter-spacing: 0;
}

/* desktop: tablet */
@media (min-width: 744px) {
    :root {
        --container-padding: 32px;
    }
}

/* desktop: fullscreen 1440 */
@media (min-width: 1440px) {
    :root {
        --container-padding: 120px;
    }
    
    main {
        gap: 120px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        line-height: 150%;
    }
}

/* desktop: fullscreen 1920 */
@media (min-width: 1920px) {
    :root {
        --container-padding: 360px;
    }
}
