@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.mainFont {
  color: hsl(0, 0%, 100%);
}

.secondFont {
  color: hsl(75, 94%, 57%);
}

body {
  height: 50vh;
  background-color: hsl(0, 0%, 12%);
}

.container {
  background-color: hsl(0, 0%, 20%);
  margin: auto;
  padding: 25px;
  margin-top: 10%;
  width: 360px;
  border-radius: 2%;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
header .img img {
  border-radius: 50%;
}
header .description {
  margin-top: 5%;
}
header .presentation {
  margin-top: 5%;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5%;
}
.links a {
  text-decoration: none;
  width: 300px;
  padding: 10px;
  background-color: hsl(0, 0%, 8%);
  text-align: center;
  border-radius: 10px;
  margin-top: 3%;
  transition: 0.5s all;
}
.links a:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
}/*# sourceMappingURL=style.css.map */