:root {
  --bcg-color: #ccc;
  --text-color: #000;
  --link-color: #0a49f7;
  --link-color-hover: #2d0864;
}

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

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--bcg-color);
  color: var(--text-color);
  font-size: 1.6rem;
}

main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem;
}

.container {
  width: 100%;
  max-width: 100rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.header {
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.logo {
  display: block;
  width: 100%;
}

.avatar {
  width: 30rem;
  height: auto;
  border-radius: 100%;
}

.footer {
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.link {
  font-size: 2rem;
  color: var(--link-color);
  text-decoration: none;

  transition: color .3s ease-in-out;
}

.link:hover {
  color: var(--link-color-hover);
}

.parag {
  font-size: 2rem;
}

.title {
  font-size: 3rem;
}