body {
    background-image: url('resources/wallpaper.jpg');
    font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-image: url('resources/brushed-metal-pattern.jpeg');
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

header h1 {
    color: #464646;
}

section {
    padding: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.product-description {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 20px;
    max-width: 550px;
    margin-bottom: 20px;
    display: block;
    margin: 0 auto;
}

.product-image {
    margin-bottom: 20px;
}

.product-image img {
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    display: block;
    margin: 0 auto;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;

}

footer a i {
    color: lightblue;
    padding-left: 10px;
}

