/*!
Theme Name: AHanssen
Theme URI: https://appxpress.com.br
Author: Hanssen
Author URI: http://ppxpress.com.br
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hanssen
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Hanssen is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*!
Theme Name: AHanssen
Theme URI: https://appxpress.com.br
Author: Hanssen
Author URI: http://ppxpress.com.br
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hanssen
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Hanssen is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Aula Flexbox */
body {
    /* margin: 0;
  padding: 0; */
    /* font-size: 16px; */
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}

ul {
    display: flex;
    gap: 10px;
}

li {
    list-style: none;
}

a {
    color: #112e61;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

/* Aula Grid */

.grid {
    max-width: 1600px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

img {
    max-width: 100%;
}

/* Aula de Responsividade */

main {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1280px) {
    main {
        padding: 30px 20px;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 990px) {
    main {
        padding: 20px;
    }
}

@media (max-width: 800px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .logo {
        max-width: 70px;
    }

    ul {
        gap: 8px;
    }

    nav {
        padding: 10px 15px;
    }

    a {
        font-size: 15px;
    }
}