@font-face {
  font-family: 'rnx';
  src: url('./fonts/Ethnocentric_Rg.otf');
  font-display: swap;
}


@font-face {
font-family: 'lastdays';
src: url('./fonts/Last Days.ttf');
}

@font-face {
font-family: 'redseven';
src: url('./fonts/Red Seven.otf');
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 50px; /* Smaller left padding */
  padding-top: 20px;  /* Smaller top padding */
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
   opacity: 0.3;
}

.logo {
  position: absolute;
  top: 300px;
  left: 50%;
  max-width: 100%;
  transform: translateX(-50%);
  margin: 0;
  color: white;
  
  /* Fade-in animation */
  opacity: 0;
  animation: fadeIn 10s ease-out forwards;
}

.layout {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100%;
}

.container {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}

#content {
  flex: 1; /* Fill remaining space */
  padding: 250px;
  color: white;
  font-family: 'rnx', sans-serif;
  font-size: 1.5rem;
  overflow-y: auto;
}

.folionav {
        font-family: "redseven", sans-serif;
 }

 a:link {
        color: white; /* Or any desired color */
 }

a:visited {
      color: white; /* Set to the same color as a:link */
}

/*
.Home, .Portfolio, .About, .Contact {
  /* No need to float
}
*/

button {
  all: unset;
  background-color: #040a1a;
  border: 6px solid #252e45;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-family: 'rnx', sans-serif !important;
  font-size: 3rem;
  font-weight: 700;
  padding: 1rem 2rem;
  text-transform: uppercase;
  transform: skewX(-15deg);
}

button:focus {
  outline: revert;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px); /* Optional: start slightly higher */
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Smooth drop down */
  }
}