body, h1, p, nav, a {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-size: cover;
    background-attachment: fixed;
    animation: slideshow 20s infinite;
}

@keyframes slideshow {
    0%   { background-image: url("../Img/Background_2.jpg"); }
    25%  { background-image: url("../Img/Background_3.jpg"); }
    50%  { background-image: url("../Img/Background_4.jpg"); }
    75%  { background-image: url("../Img/Background_5.jpg"); }
    100% { background-image: url("../Img/Background_6.jpg"); }
}

.container {
    width: 80%;
    margin: 0 auto;
    background: white;
    border-radius: 3px;
    box-shadow: 0 0 5px gray;
}

header {
    padding: 15px;
}

header h1 {
    margin-bottom: 10px;
}

nav {
    margin: 10px 0;
}

nav a {
    line-height: 30px;
    color: orangered;
    text-decoration: none;
    font-variant: small-caps;
    font-size: larger;
    padding: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 20px;
    padding: 10px;
    background: #eee;
    border-top: 1px solid #ccc;
}

.header-cont{
    position: relative;
    background: url("../Img/Background.jpg") no-repeat center center;
    background-size: cover;
    height: 200px;
    color: white;
}

.header-cont h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 15px blue;
}

.header-cont p{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: larger;
    text-shadow: 0 0 10px blue;
}
nav {
    background-color: silver;
    text-align: center;
}
nav a {
    color: white;
    text-decoration: none;
    font-variant: small-caps;
    font-size: larger;
    padding: 0 15px;
    line-height: 40px;
    margin:100px;
}

nav a:hover {
    text-decoration: underline;
    color: white;
}

.content-cont {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.content-cont2 {
    text-align: center;
}
.content-cont2 ul {
    text-align: center;
    margin: 50px 0 0 0;
    font-size: larger;
    padding: 20px;
}

.content-cont2 ul li {
    list-style: inside;
    margin: 20px 0;
    line-height: 50px;;
}


.content-cont a {
    text-decoration: none;
}

.edition-box {
    width: 200px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.edition-box:hover {
    transform: scale(1.05);
}

.edition-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.edition-image {
    width: 150px;
    border-radius: 5px;
    height: 200px;
    
}

footer p {
    font-size: 0.9em;
    color: black;
    text-align: center
}

.dropdown {
position: relative;
display: inline-block;
}

.dropdown-content {
display: none;
position: absolute;
background-color: white;
box-shadow: 0 0 5px gray;
z-index: 1;
min-width: 100%;
width: auto;
}

.dropdown-content a {
display: block;
padding: 8px 12px;
color: orangered;
text-decoration: none;
white-space: nowrap;
}

.dropdown-content a:hover {
background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
display: block;
}

.content-cont-products {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px; 
justify-items: center;
padding: 20px;
}

.fb-comments {
margin-top: 20px;
display: flex;
justify-content: center;
}

.top-right {
position: absolute;
top: 0;
right: 0;
background-color: black;
border-bottom-left-radius: 30px;
padding: 8px 15px;
box-shadow: 0 0 5px white;
}

.top-right a {
color: white;
text-decoration: none;
font-weight: bold;
margin-left: 10px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #f1f1f1;
  z-index: 9;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border-radius: 10px;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password], .form-container input[type=date] {
  width: 90%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}


/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}