body {
    background-color: #f3f4f6;
    color: #333333;
    font-family: 'Lobster', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #2c3e50;
    text-align: center;
}

a {
    color: #16a085;
    text-decoration: none;
}

a:hover {
    color: #1abc9c;
}

.froge-button {
    background-color: #1abc9c;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.froge-button:hover {
    background-color: white;
    color: black;
    border: 2px solid #1abc9c;
}

nav {
    background-color: #246EB9;
    padding: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    font-weight: bold;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.froge-shop-logo {
    width: 150px;
    height: auto;
}

.froge-card {
    border: 2px solid #e7e7e7;
    border-radius: 8px;
    margin: 20px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.froge-card img {
    width: 100%;
    border-bottom: 2px solid #e7e7e7;
}

.froge-card h3 {
    color: #34495e;
}

.froge-card p {
    color: #777777;
}

.froge-card .price {
    color: #16a085;
    font-weight: bold;
    margin-top: 10px;
}