@import url(https://fonts.googleapis.com/css?family=Nunito);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}
body {
  --main: #900c3f;
  --primary: #c70039;
  background-color: var(--main);
}
.app {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 10px;
  padding-bottom: 20px;
}
.app::-webkit-scrollbar {
  display: none;
}
.app > img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin: 20px 10px;
  -webkit-user-drag: none !important;
}
.app > h1 {
  color: white;
  margin-top: 30px;
}

.about > p {
  color: white;
  font-size: 1rem;
}
.about {
  width: 100%;
  max-width: 500px;
}
.about > h1 {
  color: white;
  font-size: 1.2rem;
  text-align: center;
}

.socials {
  width: 100%;
  max-width: 400px;
  background-color: var(--primary);
  padding: 10px;
  display: flex;
  justify-content: space-around;
  border-radius: 10px;
  margin: 10px 0;
}
.socials > a > img {
  width: 30px;
  height: 30px;
  -webkit-user-drag: none;
}
.app > footer {
  margin-top: 10px;
  color: white;
  font-size: 0.8rem;
}
