* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Ubuntu;
}

body {
    min-height: 100vh;
}

/* header */
.containerMenu {
    font-family: 'Play', sans-serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    max-width: 1200px;
    height: 6rem;
    padding: 0 1rem;
}

#linkHomeImg {
    margin: auto 1rem;
}

#linkHomeImg img {
    width: 6rem;
}

.containerMenu nav {
    font-family: 'Play', sans-serif;
    display: none;
    margin: auto 0 auto auto;
}

.containerMenu nav a {
    font-family: 'Play', sans-serif;
    text-decoration: inherit;
    color: #212121;
    width: 100%;
    margin: 0 1.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.containerMenu nav > a:hover {
    color: #A8A8A8;
}

.menuHamburguer {
    display: flex;
}

.ham {
    display: flex;
    z-index: 100;
    top: 1rem;
    right: 1rem;
    border: none;
    cursor: pointer;
    background-color: rgba(0,0,0,0)
}

.xIcon {
    display: none;
    position: relative;
    z-index: 99;
}

.menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #006DB9;
    transform: translateY(-100%);
    transition: 0.2s;
    list-style: none;
    padding: 5rem 5rem;
    font-family: 'Play', sans-serif;
}

.showMenu {
    transform: translateY(0);
    position: absolute;
    z-index: 9;
}

li {
    padding: 1rem 0;
}

.menuLink {
    display: inline;
    font-size: 2rem;
    color: white;
    font-family: Play, sans-serif;
    font-weight: bold;
    text-decoration: none;
}

.menuLink:hover {
    text-decoration: underline;
}

.menuIcon, .xIcon {
    margin: 2rem;
    right:0;
    top:0;
    z-index:9999;
    cursor:pointer;
    width: 28px;
    height: 28px;
}

.mobile-nav-button__line {
    width:100%;
    height:4px;
    background:#212121;
    position:relative;
    transition:1s ease;
}

.mobile-nav-button__line:nth-child(1) {
    margin-bottom: 0.4rem;
}

.mobile-nav-button__line:nth-child(2) {
    margin: 0.4rem 0;
}

.mobile-nav-button__line:nth-child(3) {
    margin-top: 0.4rem;
}

.xIcon .mobile-nav-button__line {
    background: white;
}

.mobile-nav-button__line--1 {
    width:100%;
    height:4px;
    background:#f0f0f0;
    position:relative;
    transition:1s ease;
    margin: 0.5rem 0;
    transform: rotate(45deg);
    position: absolute;
}

.mobile-nav-button__line--2 {
    width:100%;
    height:4px;
    background:#f0f0f0;
    position:relative;
    transition:1s ease;
    margin: 0.5rem 0;
    transform: rotate(135deg);
    position: absolute;        
}

#playNow {
    font-size: 1.1rem;
    font-family: 'Play', sans-serif;
    color: white;
    background-color: #006DB9;
    border-radius: 2rem;
    padding: 1rem 2rem 1rem 2rem;
    transition: .3s;
}

#playNow:hover {
    background-color: #fb5555;
}

/* section about */
#container-about {
    width: calc(100vw - var(--scrollbar-width));
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-about {
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.container-about__title-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #006DB9;
}

.container-about__title {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 1rem 1rem;
}

.container-about__title img {
    height: 2rem;
    margin-left: 1rem;
}

.container-about__title h2 {
    font-family: Ubuntu;
    font-weight: 400;
    font-size: 2rem;
    color: #efefef;
    margin-left: 2rem;
}

.container-about__items {
    width: 100%;
    max-width: 1200px;

    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr;
    grid-template-areas: 'a' 'd' 'j' 's';
    grid-gap: 2rem;
    justify-items: center;

    padding: 2rem;
}

.container-about__item {
    width: 100%;
    max-width: calc(100vw - var(--scrollbar-width));
    min-height: 25rem;
    border-radius: 1.2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 1.5rem;
    box-shadow: 0px 0px 60px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.container-about__item:hover {
    transform: translateY(-.5rem) scale(1.025);
}

.container-about__item:nth-child(1) {
    background-color: #C29DFF;
    grid-area: a;
}

.container-about__item:nth-child(1) .container-about__item__description {
    background-color: #cdafff;
}

.container-about__item:nth-child(2) {
    background-color: #BEFFEF;
    grid-area: d;
}

.container-about__item:nth-child(2) .container-about__item__description {
    background-color: #9effe7;
}

.container-about__item:nth-child(3) {
    background-color: #9DEDFF;
    grid-area: j;
}

.container-about__item:nth-child(3) .container-about__item__description {
    background-color: #71e5ff;
}

.container-about__item:nth-child(4) {
    background-color: #de5b8f;
    grid-area: s;
}

.container-about__item:nth-child(4) .container-about__item__description {
    background-color: #ff80b3;
}

.container-about__item__title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-about__item__avatar {
    position: relative;
    display: flex;
    justify-content: center;
}

.container-about__item__avatar__image {
    width: 40%;
    border-radius: 50%;
    border: solid 2px #f0f0f0;
}

.container-about__item__avatar__mascot {
    position: absolute;
    width: 13%;
    right: 30%;
    bottom: -5px;
}

.container-about__item__props {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    margin-top: .8rem;
}

.container-about__item__props h1 {
    font-weight: 400;
}

.container-about__item__social-medias {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.8rem;
}

.container-about__item__social-medias a {
    display: flex;
    justify-content: space-between;
    background-color: white;

    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    
    border-radius: 1.2rem;
    padding: 0.2rem 0.5rem ;
}

.container-about__item__social-medias a:nth-child(1) {
    background-color: #181717;
    color: #f0f0f0;
}

.container-about__item__social-medias a:nth-child(2) {
    margin-left: .5rem;
    background-color: #0A66C2;
    color: #f0f0f0;
}

.container-about__item__description {
    height: 100%;
    min-height: 6rem;
    margin-top: 1rem;
    border-radius: 0.6rem;

    background-color: #f0f0f0;

    padding: 1rem;
}

.container-about__item__description h2 {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 700;
}

.container-about__item__description p {
    font-size: 1rem;
    font-weight: 300;
    color: #333333;
    transform: translateY(-0.5rem);
}

/* footer */

footer {
    background-color:#006db9 ;
    color: white;
    display: flex;
    height: 90px;
    margin: auto;
    align-items: center;
    justify-content: center;
}

footer .container-copy {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 2rem;
}

/* media querys */

/* mobile styles */
@media only screen and (min-width: 453px) {
    .containerMenu{
        height: 8.75rem;
    }

    #linkHomeImg img {
        width: 7rem;
    }

    .container-about__title img {
        height: 3rem;
    }
    
    .container-about__title h2 {
        font-size: 3rem;
        margin-left: 3rem;
    }

    .menuIcon, .xIcon {
        width: 35px;
        height: 35px;
    }

    .mobile-nav-button__line:nth-child(1) {
        margin-bottom: 0.5rem;
    }
    
    .mobile-nav-button__line:nth-child(2) {
        margin: 0.5rem 0;
    }
    
    .mobile-nav-button__line:nth-child(3) {
        margin-top: 0.5rem;
    }
}

/* Tablet Styles */
@media only screen and (min-width: 768px) {
    .menu {
        display: none;
    }
    .menuHamburguer {
        display: none;
    }

    .containerMenu {
        display: flex;
    }

    #linkHomeImg img {
        width: 9rem;
    }

    .containerMenu nav {
        display: inline-block;
    }

    .containerMenu nav a {
        margin: 0 1rem;
    }

    .container-about__title img {
        height: 4rem;
    }

    .container-about__title h2 {
        font-size: 3rem;
        margin-left: 2rem;
    }

    .container-about__items {
        width: 100%;
        max-width: 1200px;
    
        display: grid;
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 'a d' 'j s';
        grid-gap: 2rem;
        justify-items: center;
    
        padding: 2rem;
    }
    
    .container-about__item {
        width: 100%;
        min-height: 25rem;
        border-radius: 1.2rem;
    
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    
        padding: 1.5rem;
        box-shadow: 0px 0px 60px rgba(0,0,0,0.05);
        transition: 0.3s;
    }
}

/* Desktop Styles */
@media only screen and (min-width: 961px) {
    .containerMenu nav a {
        font-size: 1.3rem;
        margin: 0 1.5rem;
    }

    #linkHomeImg img {
        width: 11rem;
    }
}