@import url("https://fonts.googleapis.com/css2?family=Handjet:wght@500&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");

* {
  font-family: "Space Mono";
}
body {
  text-align: center;
}
.loader-screen {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wheel-center{
  position: absolute;
  width: 5px;
  height: 5px;
  border: 4px solid red;
  background-color: rgb(120, 120, 120);
}
.spinner {
  border: 4px solid #f3f3f3;
  border-radius: 49%;
  border-top: 8px solid rgb(120, 120, 120);
  width: 75px;
  height: 75px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
nav {
  width: 100vw;
}

.notice {
  background-color: rgb(255, 169, 183);
  font-weight: 700;
  padding: 10px;
  font-family: Handjet;
  margin: 0px;
  border-style: dashed;
  border-color: red;
}
.hobbies p {
  max-width: 300px;
}
.hobbies {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  border-radius: 50%;
  border: solid 1px rgb(120, 120, 120);
  max-width: 100px;
  padding: 2px;
}
i {
  font-size: .75rem;
}
.socials i {
  max-height: 20px;
  margin: 10px;
  color: black;
  font-size: large;
}
.socials a {
  text-decoration: none;
}
.grey-text {
  color: rgb(120, 120, 120);
}
hr {
  max-width: 500px;
}
.occupation {
  color: black;
}