/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* end of css reset */

/* colours */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

:root {
  --background: #98dbc6;
  --color-0: #9ea5b9;
  --color-1: #c3dffd;
  --color-2: #a5dfca;
  --color-3: #feb3b3;
  --color-4: #f4a82e;
  --color-5: #f8db00;
  --text-color: #fff;
}

.wrapper {
  margin: 0 auto;
  background-color: var(--background);
  min-height: 100vh;
}

.container {
  margin: 0 auto;
  padding: 1em;
  max-width: 800px;
}

header {
  display: flex;
  justify-content: center;
}

.profile-img {
  height: 200px;
}

.bio-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.bio-box h1 {
  text-align: center;
}

.bio-box p {
  margin-top: 1em;
  font-size: 1rem;
  text-align: center;
}

.social-box {
  margin-top: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
}

.social-icon {
  height: 40px;
  border-radius: 50%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  cursor: pointer;
}

.social-icon:hover {
  transition: 0.4s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 1) 0px 8px 16px -8px;
}

.link-box {
  margin-top: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.link-box a {
  text-decoration: none;
}

.link {
  margin-top: 1.5em;
  padding: 1em;
  width: 100%;
  border: 1px solid black;
  border-radius: 50px;
  max-width: 700px;
  text-align: center;
  transition: 0.4s;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
}

.link:hover {
  transition: 0.4s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.link:active {
  transition: 0.4s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 1) 0px 8px 16px -10px;
}

.color-0 {
  background-color: var(--color-0);
}

.color-1 {
  background-color: var(--color-1);
}
.color-2 {
  background-color: var(--color-2);
}
.color-3 {
  background-color: var(--color-3);
}
.color-4 {
  background-color: var(--color-4);
}

.color-5 {
  background-color: var(--color-5);
}

.spotify-playlist-box {
  margin-top: 3em;
}

.spotify-headline {
  text-align: center;
}

.iframe {
  margin-top: 1em;
}

.footer-box {
  margin-top: 3em;
}

footer {
  text-align: center;
  color: darkgray;
}
