body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #e5e5e5;
}

header div {
    display: flex;
    gap: 40px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(#2E3192, #1BFFFF);
    border-radius: 20px;
    margin: 10px;
    box-shadow: 2px 1px 5px;
}

.action {
    color: black;
    padding: 9px 25px;
    background-color: #efecea;
    border-radius: 50px;
    transition: 0.5s;
    text-decoration: none;
}

.action:hover {
    background-color: #ff0000;
}

.home {
    color: black;
    padding: 9px 25px;
    background-color: #efecea;
    border-radius: 50px;
    transition: 0.3s;
    margin-right: 150px;
    text-decoration: none;
}

.home:hover {
    background-color: #fc0000;
    text-decoration: none;
}

.product-container {
    display: flex;
    gap: 30px;
    background-color: rgb(190, 190, 190);
    padding: 20px;
    border-radius: 20px;
}

.product-image img {
    height: 650px;
    width: 880px;
    border-radius: 10px;
}

.product-info {
    max-width: 400px;
}

.price {
    font-size: 24px;
    color: rgba(0, 143, 55, 0.692);
    margin-bottom: 10px;
}

.rating {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.buttons button {
    padding: 10px 20px;
    margin-right: 10px;
    font-size: 19px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.buy-now {
    background-color: rgb(240, 221, 10);
    color: white;
}

.sizes {
    margin: 20px 0;
}

.sizes span {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f0f0f0;
}

.product-details {
    margin-top: 20px;
}

.product-details h3 {
    margin-bottom: 10px;
}

.product-details p {
    line-height: 1.5;
}

.links {
    text-decoration: none;
    list-style: none;
    color: #e5e5e5;
    font-size: large;
    letter-spacing: 5px;
}