@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
}

html { 
    background: url(../images/background.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
}

footer {
    position: absolute;
    top: 88%;
    font-size: 12px;
    margin-bottom: 5px;
}

a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.bar {
    width: 100%;
    height: auto;
    display: block;
    overflow-x: hidden;
}

.header {
    background-color: #3c6692;
    z-index: 1;
    text-align: center;
    display: block;
    padding-top: 5px;
    
}

.socials {
    border: 1px solid #ffffff;
    width: 32px;
    height: 32px;
    top: 5px;
    display: inline-block;
}

.game {
    width: 320px;
    height: auto;
    padding-top: 15px;
    padding-bottom: 40px;
}

.company {
    width: 120px;
    height: auto;
}

.wishlist {
    background-color: #3c6692;
    border: 1px solid #ffffff;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    line-height: 14px;
    min-height: 30px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    font-size: 15px;
    position: relative;
    top: -10px;
    font-weight: bold;
}

.wishlist:hover {
    font-size: 16px;
}

/* Mobiles */
@media (max-width: 480px) {
    iframe {
        width: 420px;
        height: 210px;
        position: absolute;
        top: 40%;
    }

    footer {
        top: 85%;
    }

    .game {
        width: 160px;
        height: auto;
    }

    .wishlist {
        font-size: 9px;
        transform: scale(1);
    }

    .wishlist:hover {
        font-size: 10px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    iframe {
        width: 420px;
        height: 210px;
        position: absolute;
        top: 35%;
    }

    footer {
        top: 85%;
    }

    .game {
        width: 160px;
        height: auto;
    }

    .wishlist {
        font-size: 9px;
        transform: scale(1);
    }

    .wishlist:hover {
        font-size: 10px;
    }
}
