@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@500;700&display=swap');

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

body.blue {
  --bg-color: #b2c9ff;
  --text-color: #00082F;
  --primary-color: #4263EB;
  --primary-color-dark: #364FC7;
  --box-color: #4263EB;
}

body.dark-blue {
  --bg-color: #00082F;
  --text-color: #FFFFFF;
  --primary-color: #4263EB;
  --primary-color-dark: #364FC7;
  --box-color: #4263EB;
}

body.pink {
  --bg-color: #ffbdd8;
  --text-color: #530e26;
  --primary-color: #D6336C;
  --primary-color-dark: #A61E4D;
  --box-color: #D6336C;
}

body.dark-pink {
  --bg-color: #4d1e2e;
  --text-color: #FFFFFF;
  --primary-color: #D6336C;
  --primary-color-dark: #A61E4D;
  --box-color: #D6336C;
}

a {
  text-decoration: none;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
  display: grid;
  place-items: center;
}

.container {
  width: 300px;
  text-align: center;
  margin: 60px auto 0px;
}

img{
  width: 100%;
}

img.avatar {
  border-radius: 50%;
  border: var(--primary-color) solid 4px;
  width: 150px;
  padding: 3.7px;
}

h1 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 32px;
}

p.username {
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  opacity: 0.8;
  font-size: 18px;
}

span {
  margin-right: 5px;
}

ul {
  list-style: none;
  margin: 48px 0;
}
ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 53px;
  background: var(--primary-color);
  color: white;
  text-transform: uppercase;
  font-size: 14px;

  margin-bottom: 16px;
  border-radius: 6px;

  transition: 400ms;
}

ul li a:hover {
  background-color: var(--primary-color-dark);

}

h2 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
}

div.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  margin-bottom: 48px;
  background-color: var(--box-color);

  border-radius: 6px;
  border: none
}

input {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.600);
  margin: 0px 5px;

  transition: 0.2s;
}

input:hover {
  transform: translate(0px, -5px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.8);
}

input.button-blue {
  background-color: #b2c9ff;
}

input.button-dark-blue {
  background-color: #00082F;
}

input.button-pink {
  background-color: #ffbdd8;
}

input.button-dark-pink {
  background-color: #7a1639;
}
  
footer {
  font-weight: 500;
  font-size: 12px;
  opacity: 0.6;
  transition: opacity 400ms;
}

footer:hover {
  opacity: 1;
}

footer a {
  color: var(--text-color);
}
  