* {
    background-color: rgb(225, 222, 222);
}

a {
    font-size: 1rem;
    color: white;
    margin-left: 80px;
    position: relative;
    top: 20px;
    border: 1px solid;
    border-radius: 6px;
    padding: 8px 10px;
    height: 20px;
    width: 100px;
    text-decoration: none;
    background-color: #0a6884;
}

a:hover {
    background-color: white;
    color: #FF3C78;
    border: 1px solid #FF3C78;
}

/* hero */
.hero-box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 800px;
    background-color: rgb(225, 222, 222);
    /* margin: 0px 178px; */
}

.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 1000;
    position: relative;
    bottom: 30px;
}

.hero-text p {
    font-size: 1.2em;
    font-weight: 500;
    position: relative;
    bottom: 30px;
}

.hero-btn {
    background-color: #0a6884;
    color: white;
    border: 1px solid transparent;
    padding: 10px 47px;
    border-radius: 4px;
    font-size: 12px;
}

.hero-btn:hover {
    background-color: white;
    color: #FF3C78;
    border: 1px solid #FF3C78;
}

.hero-image img {
    height: 600px;
    border-radius: 20px;
    position: relative;
    bottom: 50px;
}

#container {
    width: 90vw;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.product {
    width: 320px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.26);
    transition: 300ms;
}

.product img {
    width: 100%;
}

.product h3 {
    font-weight: normal;
    font-size: 1.6rem;
}

.product h3 span {
    color: red;
    float: right;
}

.product button {
    padding: 8px 15px;
    background-color: rgb(7, 33, 49);
    color: white;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
}

.product button:hover {
    cursor: pointer;
}

.product:hover {
    transform: scale(1.05);
    cursor: pointer;
}