/* style.css */

body {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: 'Courier New', monospace;
  color: #ececec;
  text-align: center;
}

.wrapper {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  margin: 60px auto;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #ddd;
}

nav a {
  margin: 0 10px;
  color: #bbb;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
}

.chat img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
}

em {
  font-style: normal;
  color: #ccc;
}

footer {
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.social-icons {
}

.social-icons a {
  margin: 0 10px;
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.icon {
  width: 24px;
  vertical-align: middle;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-content img {
  width: 150px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}


.contact-content a,
.contact-content p {
  margin: 0;
  color: #bbb;
  text-decoration: none;
}

.contact-content a:hover {
  color: #fff;
}

.hover-image {
  content: url('Photos/Nora.png');
  transition: 0.3s ease-in-out;
}

.hover-image:hover {
  content: url('Photos/Nora2.png');
}
