:root {
    --accent: #c6561a;
    --background: #fff3e9
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 19px;
    /*font-size: 1.2rem;*/
}

p {
    font-size: 1.2rem;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: #2d2d2d;
    overflow-x: hidden;
    max-width: 100vw;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--background);
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: var(--accent);
}

.logo-img {
    height: 50px;
    width: 50px;
}

nav {
    display: flex;
    flex-grow: 1;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 0 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #2d2d2d;
    font-size: 1rem;
}

.links {
    display: flex;
}

.tg-link {
    margin: 0 25px;
    text-decoration: none;
}

.tg-link button{
    border: 1px solid #229ED9;
    background: none;
    border-radius: 5px;
    padding: 7px 10px;
    align-items: center;
    display: flex;
    width: 45px;
    justify-content: space-around;
    color: #229ED9;
    cursor: pointer;
    height: 100%;
    transition: .3s background-color;
}

.tg-link button:hover {
    background-color: rgba(34, 158, 217, 0.1);
}

.tg-link img {
    height: 20px;
    width: 20px;
}

section {
    max-width: 1200px;
    width: 80%;
    margin: auto;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--background);
    margin-bottom: 100px;
}

.hero-text {
    max-width: 50%;
}

h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

header .play-button-link {
    display: none;
}

#tg-link-1 {
    display: none;
}

.header-links {
    display: flex;
    align-items: center;
}

.play-button {
    background-color: var(--accent);
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#people_1_svg {
    max-width: 600px;
    width: 50%;
    margin-top: 20px;
}

h2 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

h3 {
    color: var(--accent);
    font-size: 1.7rem;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow:
            rgba(255, 243, 233, 0.5) 2px 2px 1px,
            rgba(255, 243, 233, 0.5) 2px -2px 1px,
            rgba(255, 243, 233, 0.5) -2px 2px 1px,
            rgba(255, 243, 233, 0.5) -2px -2px 1px;
}

.brand-idea {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 10%;
    margin-bottom: 150px;
}

.brand-idea img {
    z-index: -2;
    position: absolute;
    left: 0;
    width: 40%;
    max-width: 700px;
}

.people2 {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.people2 img {
    width: 80%;
    margin: auto;
}

.deck-section {
    display: flex;
    justify-content: space-between;
    padding-right: 20%;
    margin-bottom: 200px;
}

.deck-section p {
    text-shadow:
            rgba(255, 243, 233, 0.5) 2px 2px 1px,
            rgba(255, 243, 233, 0.5) 2px -2px 1px,
            rgba(255, 243, 233, 0.5) -2px 2px 1px,
            rgba(255, 243, 233, 0.5) -2px -2px 1px;
}

.deck-section .deck-cards {
    position: absolute;
    margin-left: 50%;
    width: 50%;
    object-fit: contain;
    z-index: -2;
    max-height: 700px;
    max-width: 570px;
}

.openness-levels h3 {
    font-size: 1.3rem;
    margin-top: 40px;
}

.openness-levels span {
    text-shadow: none;
}

.openness-levels .level{
    padding: 6px 10px;
    border-radius: 10px;
}

.openness-levels .level-1 {
    background-color: #B7DBCA;
    color: #517C68;
}

.openness-levels .level-2 {
    background-color: #F3BA77;
    color: #A86414;
}

.openness-levels .level-3 {
    background-color: #B093CF;
    color: #5A1E9C;
}

.deck-section {
    display: flex;
    flex-direction: column;
}

.deck-section .app-store {
    display: flex;
    width: 250px;
    margin: 50px auto;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    /*background-color: #fff3e9;*/
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    section {
        flex-direction: column;
        /*text-align: center;*/
        width: 80%;
    }

    h1,h2,h3 {
        text-align: center;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    #tg-link-1 {
        display: flex;
    }

    #tg-link-2 {
        display: none;
    }

    .hero p,
    .brand-idea p,
    .deck-section p {
        font-size: 0.95rem;
    }

    .hero button {
        padding: 10px 20px;
    }

    .logo-img {
        display: none;
    }

    header {
        padding: 20px;
    }

    nav {
        display: none;
    }

    header .play-button-link {
        display: flex;
        text-decoration: none;
    }

    .hero {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .hero-text {
        order: 2;
        max-width: 100%;
    }

    #people_1_svg {
        order: 1;
        width: 100%;
        margin-bottom: 50px;
    }

    .hero .play-button-link {
        display: none;
    }

    .brand-idea {
        padding: 0;
        margin-bottom: 50px;
    }

    .brand-idea img {
        display: none;
    }

    .people2 {
        margin: 0 0 100px 0;
        width: 100%;
    }
    .people2 img {
        margin: 0;
        width: 100%;
    }

    .deck-section {
        padding: 0;
        margin-bottom: 150px;
    }

    .deck-section .app-store-link .app-store{
        margin: 0 auto 30px;
    }

    .deck-section p {
        width: 100%;
    }

    .deck-section .deck-cards {
        margin-left: 0;
        left: 0;
        opacity: 0.3;
        width: 95%;
    }
}

@media (min-width: 1500px) {
    .deck-section .deck-cards {
        margin-left: 800px;
    }
}

@media (max-width: 480px) {
}
