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

body {
  color: hsl(0, 0%, 20%);
  font-family: Palatino, monospace;
}

a {
  text-decoration: none;
  color: #343434;
}

h1,
h2,
a {
  font-family: 'Remark', Palatino, monospace;
}

.container {
  width: 100%;
  min-height: 100dvh;
  height: 100%;
  background: linear-gradient(28.05deg, #ee9ca7 13.66%, #ffdde1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}

.avatar {
  width: 120px;
  height: 120px;
  box-shadow: 1px 1px 5.4px 1px #ffe4e8;
  border-radius: 34px;
  margin-top: 40px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subtitle {
  font-size: 20px;
  margin-top: 45px;
  text-transform: uppercase;
}

.title {
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 13px;
}

hr {
  width: 150px;
  height: 1px;
  background: #777777;
  margin-top: 20px;
  outline: 0;
  border: 0;
  margin-top: 50px;
  margin-bottom: 40px;
}
.contacts-title {
  margin-bottom: 20px;
  font-size: 14px;
  font-family: monospace;
}

.contacts-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-container .contact {
  display: block;
  position: relative;
  width: 250px;
  height: 45px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.2s ease-in-out;
}

.contacts-container .contact:hover {
  background: rgba(255, 255, 255, 0.9);
}

.contacts-container .arrow {
  width: 31px;
  height: 8px;
  background: url('./assets/arrow.svg');
}

.contacts-container .icon {
  height: 30px;
}

.contacts-container .name {
  font-size: 18px;
  text-transform: lowercase;
}

@font-face {
  font-family: 'Remark';
  src: url('./assets/Remark.otf') format('opentype');
  font-style: normal;
  font-weight: normal;
}
