body{
    background-image: url(shop.jpg);
    background-size: cover;
    text-align: center;
    color: whitesmoke;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header {
    background-color: #1a1a1a;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
} 

header{
    font-size: 15px;
    font-weight: bold;
    color: whitesmoke;
}
nav a {
    color: whitesmoke;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: sans-serif;
  background-image: url(shop.jpg);
  background-size: cover;
  color: white;
}

.container {
  padding: 50px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 1.2rem;
  margin-bottom: 50px;
  text-shadow: 1px 1px 3px black;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  position: relative;
  width: 200px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;

}

.card:hover {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.5);
}

.info {
  position: relative;
  text-align: center;
  z-index: 1;
}

.info strong {
  font-size: 1.2rem;
  display: block;
}

.info p {
  font-size: 0.9rem;
  color: #ccc;
}

footer {
    background-color: #1a1a1a; 
    color: #ffffff; 
    text-align: center;
    padding: 40px 20px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 400px;
}

footer a {
    color: #4aa3ff; 
    text-decoration: none;
    font-weight: 500;
}

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

footer .footer-divider {
    margin: 20px auto;
    width: 90%;
    border-top: 1px solid #666;
}

footer .copyright {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
}

.logo{
  height: 45px;
  width: auto;
  object-fit: contain;
}

hr{
  width: 200px;
  margin: 0 auto;
  border: 2px solid;  
}

h3{
  color: #1a1a1a;
}