* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  line-height: 1.5;
  color: #fff;
  background: #222f42;
}

a {
  text-decoration: inherit;
}

.icon:hover > svg > path {
  fill: white;
}

header {
  display: flex;
}

.container {
  max-width: 720px;
  margin: auto auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portrait {
  margin-top: 10px;
  width: 250px;
  border-radius: 100%;
  border-color: #2e3f59;
  border-width: 5px;
  border-style: solid;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin-right: 10px;
  font-size: 24px;
}

.link {
  display: flex;
}

.main {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.links {
  margin-top: 10px;
}

footer {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

#spotify {
  display: flex;
}

.songName,
.aritst {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-left: 0.5rem;
}

.divider {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.artist {
  color: #2e3f59;
}

.spotify-link {
  color: inherit;
  display: flex;
}

@media (max-width: 616px) {
  .main {
    flex-direction: column;
  }
}

@media (max-width: 438px) {
  h1 {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
