/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}





header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    width: 100%;
}
#twelve {
    height: 50px;
    margin: 10px;
    padding: 2px;
    background-color: white;
}
h1 {
    text-align: center;
    font-size: 40px;
}

.icon {
    display: none;
}

#menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

#menu a {
    flex-basis: 1;
    flex-grow: 1;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    transition: .6s;
    text-align: center;
}
#menu a:hover, .icon:hover {
    background-color: rgb(0, 133, 133);
}
#uno {
    grid-area: uno;
}
#dos {
    grid-area: dos;
}
#tres {
    grid-area: tres;
}
#cinco {
    grid-area: cinco;
}
#zom {
    grid-area: zom;
    width: 600px;
    margin: auto;
}
#ips {
    grid-area: ips;
    width: 600px;
    margin: auto;
}
main {
    display: grid;
    grid-template-areas: 
    "ips ips"
    "uno cinco"
    "zom zom"
    "dos tres";
}
img {
    padding: 50px;
    max-width: 100%;
}
section {
    padding: 30px;
}

h2 {
    font-size: 25px;
    padding: 10px;
    font-weight: 700;
}
p {
    font-size: medium;
}
@media screen and (min-width: 600px) and (max-width: 1199px) {
    h1 {
        font-size: 30px;
    }
    body {
        background-color: aliceblue;
    }
    main {
        grid-template-areas: 
        "uno"
        "ips"
        "dos"
        "tres"
        "zom"
        "cinco";
    }
    #zom, #ips {
        width: 500px;
            max-width: 100%;
    }
}

@media screen and (max-width: 599px) {
    body {
        background-color: bisque;
    }

    h1 {
        font-size: 30px;
    }
    p {
        font-size: small;
    }
    main {
        grid-template-areas: 
        "uno"
        "ips"
        "dos"
        "tres"
        "zom"
        "cinco";
    }
    .icon {
        display: flex;
        text-decoration: none;
        color: aliceblue;
        padding: 18px 20px;
    }
    #menu a {
        padding: 14px 16px;
        background-color: #333;
        width: 50px;
        justify-self: center;
        text-align: center;
    }
    #menu {
        position: fixed;
        top: 74px;
        right: 0px;
        flex-direction: column;
        background-color: #333;
        display: none;
    }
    #zom, #ips {
        max-width: 400px;
        width: 80vw;
        display: flex;
    }
}