body {
    background-color: #ADD8E6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: sans-serif;
}

.container {
    text-align: center;
}

.content-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.content {
    margin: 0;
}

.price {
    font-size: 1.2em;
    font-weight: bold;
}

.footer {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

a {
    text-decoration: none;
    color: #000;
}