/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* ------------------------------
   METROZINE
------------------------------ */

@font-face {
    font-family: "Metrozine";
    src: url("https://pakoworld.neocities.org/metrozine/metro-zine-webfont.woff");
}

/* ------------------------------
   BASIC RESET
------------------------------ */

* {
    box-sizing: border-box;
}

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


/* ------------------------------
   MAIN PAGE
------------------------------ */

body {
    background-color: #197EC1;
    color: #9BCFDC;
    font-family: Helvetica, Arial, sans-serif,"Metrozine";
}

.world {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 60px 30px 80px;
}


/* ------------------------------
   LOGO
------------------------------ */

.logo {
    width: min(700px, 80vw);
    height: auto;

    display: block;

    margin: 0 auto 55px;
}


/* ------------------------------
   INTRO
------------------------------ */

.intro {
    text-align: center;

    font-family: "Metrozine";
    font-size: 22px;
    line-height: 1.25;

    margin-bottom: 75px;
}

.intro p {
    margin: 0;
}


/* ------------------------------
   THREE WORLDS
------------------------------ */

.worlds {
    width: min(1100px, 90vw);

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 60px;
}


/* ------------------------------
   EACH WORLD
------------------------------ */

.world-item {
    width: 30%;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;
    color: #9BCFDC;
}


/* ------------------------------
   YELLOW ILLUSTRATIONS
------------------------------ */

.world-image {
    width: 190px;
    height: 150px;

    object-fit: contain;

    display: block;

    margin-bottom: 20px;

    transition: transform 0.25s ease;
}


/* tiny movement when hovered */

.world-item:hover .world-image {
    transform: translateY(-5px);
}


/* ------------------------------
   PLAY / LOOK / PAUSE
------------------------------ */

.world-title {
    font-family: "Metrozine";

    font-size: 50px;
    line-height: 1;

    margin-bottom: 12px;
}


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

.world-description {
    font-family: Helvetica, Arial, sans-serif;

    font-size: 16px;
    line-height: 1.2;

    text-align: center;
}


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

@media (max-width: 700px) {

    .world {
        padding: 40px 20px 60px;
    }

    .logo {
        width: 90vw;
        margin-bottom: 40px;
    }

    .intro {
        font-size: 17px;
        margin-bottom: 55px;
    }

    .worlds {
        flex-direction: column;
        align-items: center;

        gap: 60px;
    }

    .world-item {
        width: 100%;
    }

    .world-image {
        width: 170px;
        height: 130px;
    }

    .world-title {
        font-size: 42px;
    }

    .world-description {
        font-size: 14px;
    }
}