/*
 *   Copyright (c) 2024 fbongcam
 *   All rights reserved.
 */
 html {
    margin: 0;
    padding: 0;
    border: 0;
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: #3cd5ae;
    background: linear-gradient(180deg, rgba(60,213,174,1) 66%, rgba(233,196,106,1) 100%);
    font-family: "Roboto", sans-serif;
    color: black;
    text-align: center;
    font-size: 1.05em;
}

body.policy {
    background: #3cd5ae !important;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.margin {
    margin: 40px auto 40px auto;
}

#main_container {
    max-width: 600px;
    margin: 0 auto;
}

#app_icon_container {
    background-color: white;
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%) scale(1.0);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 25%;
}

img#app_icon {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    filter: drop-shadow(0px 20px 10px rgba(201, 10, 10, 0.25));
}

#app_icon_container:hover {
    transform: translateX(-50%) scale(0.95);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

h1 {
    font-size: 3.5em;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 2.1em;
    }
}

#play_logo {
    margin-top: 50px;
    max-width: 175px;
}

#google_legal {
    font-size: 11px;
}

#external {
    position: fixed;
    bottom: 20px;
    left: 20px;

    a {
        font-size: 12px;
        font-weight: 600;
    }
}
a:link,
a:visited {
    color: #3D474C;
    text-decoration: none;
}

a:hover {
    color: black;
}
#policy_page {
    width: calc(100% - 40px);
    max-width: 700px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0 auto;
    line-height: 2em;
    font-size: 0.9em;
    text-align: left !important;
    ul {
        list-style-type: none;
        li {
            line-height: 1.5em;
            font-size: 13px;
        }
        li:not(:first-child) {
            padding-top: 5px;
        }
    }
    a:link, a:visited {
        color: black;
        text-decoration: underline;
    }
    .note {
        margin-top: 40px;
        font-size: 9px;
    }
}