:root{
  --dark-bg-1: #10101a;
  --dark-bg-2: #0b0b13;
  --dark-bg-3: #25252f;
  --accent-1: #2fbf71;
  --accent-2: #e5540a;
  --accent-3: #fa5252;
  --accent-4: #edff20;
  --accent-5: #f52225;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

img{
  display: block;
  max-width: 100%;
  height: auto;
}

body{
  font-family: 'Rubik', sans-serif;
  color: #fff;
}

#app {
  position: relative;
  height: 100vh;
  background-color: var(--dark-bg-1);
  background-image: url(./assets/images/section-background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--dark-bg-1);
  opacity: 0.85;
}

.about-me {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: var(--dark-bg-3);
  padding: 30px;
  border-radius: 8px;
}

.about-me .thumb {
  margin-bottom: 15px;
  position: relative;
}

.about-me .thumb img{
  border-radius: 8px;
}

.about-me .thumb .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background: var(--dark-bg-1);
  opacity: 0.2;
}

.about-me h1{
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 0;
  font-weight: 500;
}

.about-me h2{
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.about-me .social {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.about-me .social a {
  margin: 0;
  font-size: 16px;
  color: var(--accent-1);
  background: var(--dark-bg-1);
  width: 32px;
  text-align: center;
  padding: 8px 0px;
  transition: 0.3s;
  line-height: 1;
  border-radius: 10px 5px 10px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  opacity: 0.8;
}

.about-me .social a:hover{
  background: var(--accent-1);
  color: var(--dark-bg-1);
}