* {box-sizing: border-box;}
html, body {
  height: 100vh;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #eee;
  font-family: Montserrat, sans-serif;
  background-image: radial-gradient(circle, #240032, #1a042f, #13062a, #0c0723, #06071c, #050618, #030614, #03050f, #04050f, #05040e, #06040e, #07040d);
  overflow: hidden;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0.5;
  z-index: 3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 100,
  'GRAD' -25,
  'opsz' 40;
  vertical-align: -6px;
}
a {color: inherit; text-decoration: none;}
a:hover {text-decoration: underline;}
#space {
  position: absolute;
  z-index: 1;
}
.card {
  max-width: 480px;
  height: auto;
  padding: 2rem 3rem;
  border-radius: 80px;
  background-color: rgba(0,0,0,0.12);
  box-shadow: 0 0 100px 0px rgba(255,255,255,0.2);
  cursor: default;
  position: relative;
  z-index: 10;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.skills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.skills li {
  padding: 0.5rem 0;
}
.skills li img {
  width: auto;
  height: 44px;
}
h1 {font-weight: 100; letter-spacing: 1px;}
h2 {font-weight: 700; letter-spacing: 0px;}
h3 {
  border-top: 3px solid rgba(36,0,50,0.1);
  padding-top: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
}
p {font-weight: 700;}
.tooltip {
  margin: 0;
  height: 30px;
  font-weight: 700;
}
.links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.links li a {
  opacity: 0.7;
}
.links li a:hover {
  opacity: 1;
}
.contact-icon {
  width: 27px;
  height: 17px;
  vertical-align: -3px;
  padding-right: 10px;
}
.big-text {
  position: absolute;
  z-index: 2;
  font-size: 10rem;
  font-weight: 100;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  color: white;
  margin: 0;
  width: max-content;
  opacity: 0.1;
}
.big-text small {
  font-size: 1rem;
  position: absolute;
  right: 0;
  bottom: -10px;
}
.copyright {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  color: white;
  opacity: 0.5;
  z-index: 5;
  margin: 0;
}

::selection {
  color: white;
  background-color: #650283;
}

@media screen and (max-width: 1100px) {
  .big-text {
    font-size: 5rem;
  }
}

@media screen and (max-width: 560px) {
  .big-text {
    font-size: 4rem;
  }
}

@media screen and (max-width: 500px) {
  .card {
    max-width: calc(100% - 20px);
    padding: 2rem;
  }
  .card h1 {margin-top: 0;}
  .big-text {
    font-size: 3rem;
  }
}