@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@300&family=Anton&family=Heebo:wght@300&family=Lobster&family=Open+Sans:wght@500&family=PT+Sans+Narrow&family=Poppins:wght@100;200&family=Quicksand:wght@600&family=Ramabhadra&family=Roboto:wght@100&family=Spline+Sans+Mono:wght@500&family=Wix+Madefor+Text&display=swap');
:root{
    --bg-color: #fff;
    --letter-color: #1c1c1c;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --font-wix: 'Wix Madefor Text', sans-serif;
    --font-superKH: AKbalthom SuperheroKH;
    --font-forte: Forte;
}

*{
    margin: 0;
    padding: 0;
}
body{
    background-color: var(--bg-color);
    font-family: var(--font-wix);
}

/* page-1 */
.page-1{
    width: 100%;
    height: 78vh;
    padding-top: 90px;
    overflow: hidden;
    background-color: #007bff;
}
/* page-2 */
.page-2{
    padding: 20px 0;
}
.new-arrival{
    /* display: flex; */
    width: 90%;
    height: 300px;
    margin-left: 5%;
    margin-top: 200px;
    border-radius: 20px;
    background-color: var(--indigo);
}
.new-arrival img{
    width: 400px;
    margin-left: 100px;
    margin-top: -100px;
}
.new-arrival .arrival{
    float: right;
    margin-right: 500px;
}
.arrival h1{
    margin-top: 50px;
    color: var(--bg-color);
    text-transform: uppercase;
    font-weight: bold;
}
.arrival button{
    width: 120px;
    height: 40px;
    margin-top: 50px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--indigo);
    cursor: pointer;
}
/* page-msi */
.page-msi{
    padding: 20px;
}
.page-msi h1{
    text-align: center;
    margin: 20px 0;
}
.msi{
    display: flex;
    justify-content: center;
}
.msi .box-msi-product{
    width: 400px;
    height: 500px;
    border: 1px solid var(--gray);
    border-radius: 10px;
    margin: 10px;
}
.box-msi-product img{
    width: 300px;
    margin-top: 20px;
    margin-left: 30px;
    transition: 0.5s;
}
.box-msi-product img:hover{
    transform: scale(1.1);
}
.box-msi-product h3{
    margin-top: 10px;
    text-align: center;
}
.box-msi-product .logo-product{
    position: absolute;
    width: 50px;
    transform: rotate(-45deg);
}
.box-msi-product .price{
    display: flex;
    justify-content: baseline;
    align-items: center;
    margin-top: 20px;
}
.box-msi-product .price button{
    width: 100px;
    height: 40px;
    margin-left: 50px;
    margin-right: 50px;
    border: none;
    outline: none;
    border-radius: 50px;
    background-color: var(--indigo);
    color: var(--bg-color);
    opacity: 0;
    transition: 2s;
    cursor: pointer;
}
.price{
    margin: 20px 0;
    cursor: pointer;
}
.price:hover button{
    opacity: 1;
}
.price h4{
    margin-left: -150px;
    color: var(--danger);
    transition: 0.5s;
}
.price:hover h4{
    margin-left: 0;
}
.box-msi-product p{
    margin-left: 60px;
    font-family: var(--font-wix);
    font-weight: 600;
}