body {

    background:#f4f4f5;
    margin:0;

}



.nav {

    font-family:"Geist Pixel",sans-serif;

    border:2px solid #dbd8d8;

    border-radius:15px;

    width:400px;

    background:#efecec;

    padding:10px;

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    z-index:1000;

    display:flex;

    justify-content:space-around;

    align-items:center;

    list-style:none;

}



.nav a {

    text-decoration:none;

    color:black;

}



.nav a:hover {

    color:#071a97;

}



.nav-logo {

    font-family:"Geist Pixel",sans-serif;

    font-size:22px;

}



main {

    padding-top:140px;

}



.product {

    display:flex;

    justify-content:center;

    align-items:center;

    gap:80px;

    font-family:"Geist Pixel",sans-serif;

}



.images {

    width:500px;

    height:500px;

    background:#efecec;

    border:2px solid #dbd8d8;

    border-radius:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

}



.images img {

    max-width:80%;

    max-height:90%;

    object-fit:contain;

}



.arrow {

    width:45px;

    height:45px;

    border-radius:50%;

    border:2px solid #dbd8d8;

    background:#efecec;

    cursor:pointer;

    font-size:20px;

    font-family:"Geist Pixel",sans-serif;

}



.arrow:hover {

    background:#071a97;

    color:white;

}



.info {

    width:400px;

}



.info h1 {

    font-size:70px;

    margin:0;

}



.desc {

    color:#555;

    font-size:20px;

}



.options button {

    padding:12px 25px;

    margin-right:10px;

    border-radius:12px;

    border:2px solid #dbd8d8;

    background:#efecec;

    cursor:pointer;

    font-family:"Geist Pixel",sans-serif;

}



.options button:hover {

    background:#071a97;

    color:white;

}



.stock {

    color:green;

}



.buy {

    display:inline-block;

    margin-top:30px;

    padding:15px 50px;

    border-radius:15px;

    background:#071a97;

    color:white;

    text-decoration:none;

}



.HomeFooter {

    margin-top:100px;

    padding:20px;

    background:#efecec;

    border-top:2px solid #dbd8d8;

    font-family:"Geist Pixel",sans-serif;

}