header 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: white; 
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.67);
}

header img 
{
    height: 75px; 
    width: auto;
}

nav ul 
{
    list-style: none;
    display: flex;
    gap: 67px;
    margin: 0;
    padding: 0;
}

nav a 
{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial;
}

nav a:hover 
{
    text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

main 
{
  padding: 20px;
  text-align: center;
}

.sights 
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.sight 
{
  max-width: 500px;
  border: 2px solid #b1003a;
  border-radius: 12px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  background: #fff;
}

.sight img 
{
  width: 100%;
  height: auto;
  display: block;
}

.sight-info 
{
  padding: 15px;
  text-align: left;
}

main 
{
  padding-bottom: 60px; 
}

footer 
{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  border-top: 2px solid #b1003a;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  main {
    padding: 1rem;
  }

  section {
    padding: 1.5rem;
  }
}

footer 
{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  border-top: 2px solid #b1003a;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}