*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    zoom:90%;
}


.logo {
    display: flex;
    align-items: center;
    width: 20vw;
    height: 30rem;
    margin-right: auto;
}

.header {
    background: #f4e4dc;
    padding: 2rem;
    display: flex;
    list-style: none;
    height: 10vh;
    width: 110vw;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}



.headerPP1 {
    color: #9b9b9b;
    letter-spacing: 0.3rem;
    text-decoration: none;
    color:red;
    text-decoration: underline;

}

.headerPP2 {
    color: #9b9b9b;
    letter-spacing: 0.3rem;
    text-decoration: none;

}

nav {
    width: 100vw;
    height: 100%;
    margin: 0 auto;
}

nav > ul {
    display: flex;
    list-style: none;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
}

body {
    font-size: 2rem;
    background: rgb(237, 225, 225);
    font-family: sans-serif;
 
}


.dropdown {
    position: relative;
    display: inline-block;
    padding:2rem;
}

.dropbutton {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-movies {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-movies a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-movies a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}


.games{
    gap:2rem;
    width:100%;
    display:flex;
    flex-wrap:wrap;
    gap: 0.5rem;
    align-items: center;
}



.game{
    list-style: none;
    width:25rem;
    height:30rem;
    transition: 0.2s transform;
    flex-grow:1;
}

.game:hover{
    transform: scale(1.02) translateY(-0.7rem);
    cursor:pointer;
}

.game img{
    width:100%;
    height:100%;
    object-fit:contain;
}




.footer {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    height: 20vh;
    background-color: #F4E4DC;
    padding-right:2rem;
    padding-left:2rem;
  

}

.infoTitle {
    font-family: Montserrat;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    padding-bottom: 0.4rem;
    text-decoration: underline;
}

.infoText {
    font-size: 1.5rem;
    margin-top: 2rem;
    text-transform: none;
    text-decoration: solid;
}

.shopTitle {

    font-family: Montserrat;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    padding-bottom: 0.4rem;
    text-decoration: underline;
}

.shopTextOne{
    color: red;
    display: block;
    font-size: 2rem;
    margin-top: 2rem;
    text-transform: none;
    text-decoration: solid;
    text-decoration: none;

}

.shopTextSecond{
    display: block;
    font-size: 2rem;
    margin-top: 2rem;
    text-transform: none;
    text-decoration: solid;
    text-decoration: none;
    color: black;
}