body {
  font-family: Arial, sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  background: #f0f0f0;
  padding: 10px;
  position: relative;
}

.logo img {
  max-height: 80px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.header-right {
  flex: 1;
  text-align: right;
  position: relative;
}

.header-right h1 {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: white;
  font-size: 2em;
  text-shadow: 2px 2px 4px black;
}

.header-right .profile {
  height: 60px;
  border-radius: 50%;
}

.yeti-bg {
  background: url('images/yeti.png') no-repeat center;
  background-size: cover;
  filter: blur(3px);
  height: 150px;
}

aside {
  width: 250px;
  float: right;
  padding: 10px;
  background: #fafafa;
}

.about-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-photo {
  height: 150px;
  border-radius: 10px;
}

.map {
  margin-top: 20px;
}

.social, .subdomains {
  margin-top: 20px;
  text-align: center;
}

main {
  margin-right: 260px;
  padding: 20px;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #ffcc00;
  text-decoration: none;
}
