@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;
  color: #111;
  background-color: #020202;
  max-width: 900px;
  margin: 0 auto;           /* centers body content horizontally */
  position: relative;
  min-height: 100vh;        /* optional, full viewport height */
  padding: 20px;            /* optional, some breathing room inside */
  box-sizing: border-box;   /* include padding inside width */
}

.site-content {
  display:grid;
  flex-direction: column;
  align-items: center;     /* Centers child horizontally */
  justify-content: center;
  padding: 40px 20px;
  width: 100%;             /* fill body’s width */
  box-sizing: border-box;
}

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: #fa701b;
  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;
}

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;
  display: flex;
  flex-direction: column;
  align-items: center;     /* Centers child horizontally */
  justify-content: center;
  padding: 40px 20px;
  width: 100%;             /* fill body’s width */
  box-sizing: border-box;
}

.site-content p, ul{
  color: rgb(237, 237, 237);
  text-align: left;
  position:bottom
}

.site-content a {
  color: rgb(246, 48, 27);
  text-decoration: underline;
  transition: color 0.3s ease;
  padding-left: 2%;
  font-size: 30px;
  margin-right: 10px;
}

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

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



@media (max-width: 500px) {
  .topnav h2 {
    font-size: 150%; 
    letter-spacing: 0.01em;
    margin-left: 0px;
  }
}



body.daylight {
  background-color: #fefefe;
  color: #111;
}


body:not(.daylight) #theme-toggle::after {
  content: "☀︎";
}

body.daylight #theme-toggle::after {
  content: "⏾";
}
