
:root {
  /* bgs */
  --background-color: #000000;
  --content-background-color: #000000;

  /* text */
 --text-color: #969696;
  --link-color: #2f2f2a;
  --link-color-hover: #a3a3a3;
  --font:  Arial, Helvetica, sans-serif;
  --heading-font:  Arial, Helvetica, sans-serif;
  --font-size: 15px;

  /* other */
  --margin: px;
  --padding: 24px;
  --border: 4px solid #410000;
  --round-borders: 18px;
}




.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* TOP BAR */
.topbar {

    position:fixed;
    top:0;
    left:0;
    z-index:999;


  width: 830px;
  margin: 0 auto 15px auto;

  background: var(--background-color);

  border-radius: 0;
  padding: 10px 20px;

  box-shadow: 
    0 0 10px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(120, 0, 0, 0.6);
}


/* LEFT */
.nav-logo {
    position: absolute;
    color: #a00000;
    font-size: 22px;
    white-space: nowrap; 
    display: flex;
    font-family: creepy;
    
}

/* CENTER */
.nav-links a {

  padding: 6px 14px;

  text-decoration: none;

     color: #7f6f63 !important;
  font-size: 14px;
    font-family: ms gothic;

  border: 2px solid #280000;
  background: #000;
  background: linear-gradient(to bottom, #8b0000, #000000);
  transition: all 0.2s ease;
}



.nav-links a:hover {

  color: #fff;
  background: #410000;
  border-color: #a00000;

  box-shadow: 0 0 8px rgba(160, 0, 0, 0.7);
}


/* ------------------- */
/* fonts */
@font-face {
font-family: swirl;
src: 
url(https://files.catbox.moe/7m8z1j.ttf)}

@font-face {
font-family: DCM;
src: 
url(https://files.catbox.moe/0szsvx.ttf)}

@font-face {
font-family: creepy;
src: 
url(https://files.catbox.moe/yctnez.ttf)}
/* ------------------- */


/* ------------------- */
/* basic */
* {
  box-sizing: border-box;
}


body{
    background:#111;
    padding: 20px;

    display:flex;
    justify-content:center;
    align-items:center;
overflow: hidden;

    background-image: url(https://files.catbox.moe/s412j5.png);
}

#aboutme {
overflow: hidden;
    width: 380px;
    height: 245px;
    margin-left: 15px;
    border: 2px dashed #410002;
    border-radius: 6px;
    padding: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 13px;
    padding-top: 20px;
    background-color: black;
}
#interests {
    width: 650px;
    height: 245px;
    margin-left: 15px;
    border: 2px dashed #410002;
    border-radius: 6px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    background-color: black;
}
#stuffs {
    width: 440px;
    height: 525px;
    border: 2px dashed #410002;
    border-radius: 6px;
    padding: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    padding-top: 20px;
    background-color: black;
}
.container{
    width:1200px;
overflow: hidden;
    margin-top: 120px;

    background:#1b1b1b;
    border:2px solid #510909;
    border-radius:12px;

    padding:20px;

    box-shadow:0 0 20px black;
    background-image: url(https://files.catbox.moe/t42s3p.png);
    color: #a9a9a9;
}
#d {
    display: flex;
    height: 265px;
overflow: hidden;

    font-family: alice;
}




/* cursor
/* Kingdom Hearts - Pointer - https://www.cursors-4u.com/cursor/kingdom-hearts-pointer */
* {
  cursor: url('https://cdn.cursors-4u.net/previews/kingdom-hearts-pointer-afbfd8c3-32.webp') 32 32, auto !important;
}
/* End www.Cursors-4U.com Code */
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #000000 #610000;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #610000;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }



/* ------------------- */

/* ------------------- */

/* ------------------- */
/* for mobile */

@media only screen and (max-width: 1200px) {
  body {
    font-size: 14px;
  margin-left: 0;
}
  }
  .sidebar {
    margin-bottom: 20px;
  }
  .layout {
    width: 100%;
    grid-template: "header" auto  "main" auto "footer" auto / 1fr;
  }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
    }
  
.container {
  display: flex;
  flex-direction: column; 
  gap: 20px;              
    }

  .img {
   max-width: 100%; 

  }
.topbar {
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
}
.blinkies {
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
}
.nav-logo {
  flex: 100%;
  margin-bottom: 10px;
}

.nav-links {
  flex: 100%;
  flex-wrap: wrap;
  gap: 10px;
    }
