body {
    margin: 0cm;
    font-family: 'Philosopher', sans-serif;
}
* {
    box-sizing: border-box;
}
header {
    display: flex;
    flex-direction: row;
    font-size: 24px;
    gap: 10px;
    align-items: center;
    background-color: rgb(29, 29, 92);
    padding: 30px 30px 10px 30px;
    margin: 0 0 20px 0;
}
a {
    color: whitesmoke;
    text-decoration: none;
}
header > a:first-child {
    font-size: 30px;
    margin-right: auto;
}
main {
    flex-grow: 4;
}
.container {
    display: flex;
    min-width: 80vw;
    min-height: 80vh;
    width: 70vw;
    margin: 0 auto;
    flex-direction: column;
}
img {
    width: 200px;
    padding: 20px;
    z-index: 10;
}
.price1 {
    color: orange;
}
.price2 {
    white-space: nowrap;
}
.price > a {
    white-space: nowrap;
}
.price > button {
    margin: 10px 0 5px 0;
    width: 150px;
    height: 40px;
    background-color: orange;
    color: white;
    border: none;
}
.text {
    margin: 0 0 20px 0;
}
footer {
    background-color: rgb(29, 29, 92);
    display: flex;
    justify-content: center;
    gap: 5px;
}
footer > a:first-child {
    font-size: 16px;
}
.content {
    display: flex;
    gap: 10px;
    border: 1px solid rgb(170, 168, 168);
}
.content a {
    color: black;
}
.price {
    padding: 10px;
}
.content:hover img {
    position: relative;
    z-index: 20;
    transform: scale(1.25);
    transition: 0.5s;
}
b {
    color: red;
}
.rrr {
    margin: 0 0 0 100px;
    opacity: 0;
}
.content:hover .rrr {
    opacity: 1;
    transition: 0.5s;
}
.price > button.www {
    margin: 10px 0 10px 0;
    width: 150px;
    height: 40px;
    background-color: green;
    color: white;
    border: none;
    opacity: 0;
}
.content:hover .www {
    opacity: 1;
    transition: 0.5s;
}