/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  background-color: #000000;
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

.container {
  margin-top: 60px;
  width: 70vw;
  min-height: 100vh;
}


.name {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 20px;
}

.name .square {
  width: 70px;
  height: 70px;
  background-color: aqua;
}

.name .in-name {
  font-size: 110px;
  font-family: "Josefin Sans", sans-serif;
  color: white;
}

.content {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 20px;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.socials {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 30px
}

.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.social-icons img {
  width: 50px;
  height: 50px;
}


@media (max-width: 1310px) {
  .in-name {
    font-size: 90px !important;
  }
}

@media (max-width: 1100px) {
  .in-name {
    font-size: 70px !important;
  }

  .square {
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 900px) {
  .in-name {
    font-size: 50px !important;
  }

  .square {
    width: 30px !important;
    height: 30px !important;
  }
}

@media (max-width: 630px) {
  .in-name {
    font-size: 30px !important;
  }

  .square {
    width: 10px !important;
    height: 10px !important;
  }
}