/* ==================== */
/* Базовые стили (ваши) */
/* ==================== */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #FAF7F5;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 15rem;
  background-color: #FAF7F5;
}


header h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: rgb(0, 0, 0);
  margin: 0;
  margin-right: 33px;
}

/* ======================== */
/* Мои дополнения и правки */
/* ======================== */
nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  height: 20px;
  margin: 0 0.5rem;
  background-color: #FF9412;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #FF9412;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  border: none;
}

.button:hover {
  color: #FF9412;
  background-color: #ffffff;
}

.button.large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  height: initial;
  border: none;
}

.center-button {
  margin: 2rem 0;
}

.avatar-container {
    width: 40px;
    height: 40px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar:hover {
    transform: scale(1.1);
    opacity: 0.8;
    box-shadow: 0 0 2px rgba(255, 148, 18, 0.5);
}

main h1 {
  font-size: 80px;
  margin: 8rem 0 1rem 0;
  cursor: default;
  user-select: none; /* Основное */
  -webkit-user-select: none; /* Для Safari */
  -ms-user-select: none; /* Для IE/Edge */
}

main p {
  margin: 0;
  font-size: 30px;
  cursor: default;
  user-select: none; /* Основное */
  -webkit-user-select: none; /* Для Safari */
  -ms-user-select: none; /* Для IE/Edge */
}
