body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    display: flex;
    justify-content: center;
    padding: 20px;
}

section {
    background-color: #f0f0f0;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.collections {
    padding: 40px;
    background-color: #f7f7f7;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
}

.collections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.collection {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.collection img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.collection h3 {
    font-size: 18px;
    margin-top: 10px;
}

.collection a {
    font-size: 16px;
    color: #337ab7;
    text-decoration: none;
}

.collection a:hover {
    color: #23527c;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #444;
}
.social-media {
    font-size: 24px; /* increased font size */
    margin: 20px;
    text-align: center;
}

.social-media a {
    margin: 0 10px;
    color: #337ab7;
    transition: color 0.2s ease;
}

.social-media a:hover {
    color: #23527c;
}

.social-media i {
    font-size: 36px; /* increased font size */
}