:root {
    --BlueColor: #001f3f;
    --YellowColor: #ffd700;
    --CreamColor: #FFA725;
    --SoftBlueColor: #10375C;
    --SoftGreen: #2DAA9E;
    --hoverColor: #09122C;

    --PaddingSection: 2rem 2rem;
}

body {
    background-color: var(--BlueColor);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 75%;
    
    margin: auto;
    padding: 6rem;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width:1000px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.btn-left {
    height: 50px;
    font-weight: 600;
    width: 300px;

    background-color: white;
    color: var(--BlueColor);
    transition: all 0.2s;

    padding: 5px;
    border-radius: 30px;
    border: none;
    cursor: pointer;

    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

span {
    color: var(--YellowColor);
}

.fas {
    margin-left: 10px;
    font-size: 1.2rem;
}

.btn-left:hover {
    color: white;
    background-color: var(--hoverColor);
}

h1 {
    font-size: 3rem;
    color: white;
}

p {
    color: white;
}

.hero-right {
    margin: auto;
}

.hero-right img {
    height: 500px;
}

/* section */
#product-data {
    border-top-left-radius: 65px;
    border-top-right-radius: 65px;

    background-color: var(--SoftBlueColor);
}

.item-right img {
    height: 500px;
}

.detail {
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 200px;
}

.game {
    background-color: var(--CreamColor);
}

.ppob {
    background-color: var(--SoftGreen);
}
/* section */