@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/Open_Sans/static/OpenSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Varela Round';
  src: url('/fonts/Varela_Round/VarelaRound-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'DaysOne';
  src: url('/fonts/Days_One/DaysOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}


body {
  font-family: 'Open Sans', sans-serif;
  background-color: #020202;
  color: #111;
  max-width: 900px;
  position: relative;
}

.intro.fade-out {
  opacity: 0;
  pointer-events: none;
}

.strike {
  position: relative;
  display: inline-block;
  color: #000;
  transition: color 0.3s ease;
}

.strike::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #b93011;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.strike.animate::after {
  transform: scaleX(1);
}

header h1 {
  font-family: 'Varela Round', sans-serif;
  font-size: 7rem;
  color: #b93011;
}

h1 {
  font-family: 'Varela Round', sans-serif;
  font-size: 7rem;
  color: #e14724;
}

h2 {
  font-family: 'Varela Round', sans-serif;
  font-size: 3rem;
  color: #fa231b;
  margin-bottom: 20px;
}

h3 {
  font-family: 'Varela Round', sans-serif;
  font-size: 2rem;
  color: #ff7300;
  margin-bottom: 15px;
}

h4 {
  font-family: 'Varela Round', sans-serif;
  font-size: 1.5rem;
  color: #f74600;
  margin-bottom: 10px;
}

header {
  text-align: center;
  margin: 40px 0;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

section {
  background-color: #a13c3c;
  color: white;
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

section:hover {
  transform: translateY(-4px);
}

.avatar {
  display: block;
  margin: 0 auto 40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(185, 48, 17, 0.5);
}

footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: #c8c8c8;
  padding: 10px 0;
  font-size: 0.9rem;
  z-index: 9999;
  font-family: 'Open Sans', sans-serif;
}

.site-content {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
}
.site-content #name {
  position: relative;   /* relative so you can nudge it */
  left: -60px;          /* move 20px to the left */
  padding-left: 0;
  font-family: 'Varela Round', sans-serif;
  font-size: 5rem;
  color: #ff4d00;
  letter-spacing: 0.07em;
  z-index: 0;
  margin: 0;
  text-align: left;
  white-space: normal;
  max-width: calc(100vw - 40px);
  pointer-events: none;
}

.site-content p {
  text-align: left;
  position:bottom
}
.site-content a, #descriptor {
  color: rgb(246, 48, 27);
  transition: color 0.3s ease;
  font-size: 28px;
  white-space: nowrap;   /* prevent wrapping */
  display: inline-block; /* keep inline but respect padding/margin */
}

@media (max-width: 600px) {
  .site-content #name {
    white-space: normal;
    padding: 0 10px;
  }
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}
