@font-face {
  font-family: "Lilita One";
  src: url(../assets/fonts/Lilita_One/LilitaOne-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins-Light";
  src: url(../assets/fonts/Poppins/Poppins-Light.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins-LightItalic";
  src: url(../assets/fonts/Poppins/Poppins-LightItalic.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins-Regular";
  src: url(../assets/fonts/Poppins/Poppins-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins-Semibold";
  src: url(../assets/fonts/Poppins/Poppins-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins-Bold";
  src: url(../assets/fonts/Poppins/Poppins-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins-Black";
  src: url(../assets/fonts/Poppins/Poppins-Black.ttf) format("truetype");
}
/* https://piccalil.li/blog/a-more-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation and weird text aliasing */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
  font-style: normal;
  font-weight: 600;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@keyframes linkSlide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
html, body {
  position: relative;
  background-color: #FF445C;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  width: 100vw;
}

.maincontainer {
  max-width: 600px;
  width: 100vw;
  height: 100vh;
  padding: 0 15px;
  overflow: hidden;
}

.profilewrapper {
  position: relative;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: white;
}
@media only screen and (min-width: 992px) {
  .profilewrapper {
    margin-top: 100px;
  }
}
.profilewrapper__image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100%;
}
.profilewrapper__icon {
  position: absolute;
  top: -5px;
  right: calc(50% - 60px);
  font-size: 2rem;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}
.profilewrapper__name {
  font-family: "Poppins-Bold";
  font-size: 1.25rem;
}
.profilewrapper__socials {
  display: flex;
  gap: 15px;
}
.profilewrapper__socials a svg {
  width: 34px;
  height: 34px;
  transition: all 0.15s ease-out;
  fill: white;
}
.profilewrapper__socials a svg:hover {
  margin-top: -3px;
  margin-bottom: 3px;
}

.buttoncontainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}
.buttoncontainer__button {
  align-self: flex-start;
  display: flex;
  align-items: flex-start;
  padding: 10px 15px;
  border: 2px white solid;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: all 0.2s ease-in-out;
}
.buttoncontainer__button:hover {
  margin-left: 10px;
}
.buttoncontainer__button img {
  height: 30px;
  object-fit: cover;
  align-self: center;
  margin-right: 10px;
}
.buttoncontainer__button__title {
  font-family: "Poppins-Bold";
  font-size: 2rem;
  line-height: 100%;
}
.buttoncontainer__button__index {
  font-family: "Poppins-Regular";
  font-size: 1rem;
}
.buttoncontainer__button:nth-child(4n+3), .buttoncontainer__button:nth-child(4n+4) {
  align-self: flex-end;
}
.buttoncontainer__button:nth-child(4n+3):hover, .buttoncontainer__button:nth-child(4n+4):hover {
  margin-right: 10px;
}

.linkslider {
  position: absolute;
  top: 2%;
  left: 0;
  width: max-content;
  z-index: 0;
  font-family: "Poppins-Bold";
  font-size: 2rem;
  color: white;
  line-height: 80%;
  animation: linkSlide 20s infinite linear;
}
@media only screen and (min-width: 992px) {
  .linkslider {
    font-size: 3rem;
  }
}