/* -------------------------
   PINS COLORS
------------------------- */

:root {
    --pins-top: #00c9ff;
    --pins-middle: #00b4ff;
    --pins-bottom: #009cff;
}

/* -------------------------
   PRIVACY POLICY PAGE
------------------------- */

body.privacy-page {
    background:
        linear-gradient(
            180deg,
            var(--pins-top) 0%,
            var(--pins-middle) 50%,
            var(--pins-bottom) 100%
        );

    background-attachment: fixed;
}


/* -------------------------
   BASE PAGE
------------------------- */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;

    background:
        linear-gradient(
            180deg,
            var(--pins-top) 0%,
            var(--pins-middle) 50%,
            var(--pins-bottom) 100%
        );

    color: white;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    text-align: center;
}


/* -------------------------
   HEADER
------------------------- */

header {
    padding-top: 20px;
}

.pins-logo {
    display: block;

    width: min(90%, 650px);
    height: auto;

    margin: 0 auto;
}


/* -------------------------
   DESCRIPTION
------------------------- */

.game-description {
    max-width: 600px;

    margin: 5px auto 25px;

    padding: 0 20px;

    font-size: 30px;
    line-height: 1.5;
}


/* -------------------------
   SEPARATORS
------------------------- */

.SeperatorLarge {
    display: block;

    width: min(90%, 1900px);
    height: min(90%, 200px);

    margin: 15px auto 50px;
}

.SeperatorSmall {
    display: block;

    width: min(90%, 950px);
    height: min(90%, 100px);

    margin: 80px auto;
}


/* -------------------------
   APP ICON
------------------------- */

.AppIcon {
    display: block;

    width: min(90%, 256px);
    height: auto;

    margin: 0 auto 100px;
}


/* -------------------------
   IMAGE CONTAINERS
------------------------- */

.image-container {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 20px;
}

.image-container img {
    width: 50%;
    height: auto;
}


.image-container2 {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 20px;
}

.image-container2 img {
    width: 10%;
    height: auto;
}




/* -------------------------
   SUBTITLE
------------------------- */

.Subtitle {
    font-size: 60px;

    margin: 50px auto;
}


/* -------------------------
   PROMO
------------------------- */

.Promo {
    display: block;

    width: min(90%, 1888px);
    height: auto;

    margin: 10px auto 0;
}


/* -------------------------
   NAVIGATION
------------------------- */

nav {
    margin: 0 auto 120px;

    font-size: 35px;
}

nav a {
    color: white;

    text-decoration: none;

    margin: 0 35px;
    font-weight: bold;
    white-space: nowrap;
}

nav a:hover {
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #70f8fa;
    text-decoration-thickness: 2px;
}


/* -------------------------
   PINS :)
------------------------- */
.Pins{
   
   width: min(90%, 200px);
   height: auto;
}


.SupportText{
   
   font-size: 40px;
   margin: 30px auto 0; 
   font-weight: bold;
   
}



/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 700px) {

   .game-description {
      font-size: 22px;
   }

   .Subtitle {
      font-size: 32px;
   }

   .SeperatorLarge,
   .SeperatorSmall {
      margin-top: 90px;
      margin-bottom: 90px;
   }

   nav {
      font-size: 16px;
   }

   nav a {
    color: white;

    text-decoration: none;

    margin: 0 10px;
    font-weight: bold;
    white-space: nowrap;
   }


    main {
        margin: 20px 12px;
        padding: 28px 20px;
        border-radius: 12px;
    }

    h1 {
        font-size: 1.75rem;
    }

   .image-container2 img {
       width: 50%;
       height: auto;
   }

   .image-container img {
       width: 19%;
       height: auto;
   }

   .SupportText{
      
      font-size: 22px;
      margin: 30px auto 0; 
      font-weight: bold;
   
   }


}
