* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background-image: radial-gradient(circle farthest-side, #7aaacee8, #f0d27fe5),
    url('/assets/img/bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}

.container {
  text-align: center;
  width: 25rem;
  margin: 3.75rem auto;
  padding: 0px 2.5rem;
}

img {
  width: 100%;
}

.profile {
  border-radius: 50%;
  width: 7.5rem;
  height: 7.5rem;
  padding: 0.23125rem;
  border: #fdb927 solid 0.1875rem;
}

.username {
  font-family: 'Open Sans', monospace;
  font-weight: 500;
  color: #00082f;
  opacity: 0.8;
  font-size: 1.125rem;
}

ul {
  list-style: none;
  margin: 3rem 0;
}

h1 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 2rem;
  color: #00082f;
  font-family: 'Cardo', monospace;

  white-space: nowrap;
}

ul li a {
  height: 3.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00416e;
  color: white;
  margin-bottom: 1rem;
  border-radius: 0.375rem;
  transition: background 400ms;
  font-weight: 600;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

ul li a:hover {
  background: #032135;
}

a {
  text-decoration: none;
  color: white;
}

footer {
  font-weight: 500;
  font-size: 0.75rem;
  color: #00082f;
  opacity: 0.6;
  transition: opacity 400ms;
}

footer a {
  color: #00082f;
}

footer:hover {
  opacity: 1;
}
