
@import url('https://fonts.googleapis.com/css2?family=Poller One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press Start 2P&display=swap');

body {
  background-color: #fff;
  color: black;
  font-family: 'Press Start 2P', sans-serif;
  margin: 0;
  padding: 0;
}

#container {
    max-width: 900px;
}

/* Header FLUTTER */
header h1 {
    font-family: 'Poller One', serif;
    font-size: 80px;
    color: #228b22; 
    margin: 0;
    letter-spacing: 5px;
}

/* Header MOON */
.moon-text {
  font-family: 'Poller One', serif;
  font-size: 80px;
  color: #ff7016;
  margin-top: -20px;
  margin-left: 90px;
}

.welcome-banner {
    border: 2px solid #f9e2a7;
    border-radius: 50px;
    padding: 5px 30px;
    display: inline-block;
    color: #f9e2a7;
    font-style: italic;
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.welcome-banner span {
    display: inline-block;
    padding-left: 100%;
    animation: moveText 20s linear infinite;
}

/* Main layout */
main {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

/* Sidebar */
.sidebar {
    width: 400px;
    height: 900px;
    border: 3px solid #f5b198;
    border-radius: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    gap: 20px;
}

/* Content layout */
.content-wrapper {
  display: flex;
  justify-content: center;   /* centers layout */
  align-items: flex-start;   /* aligns items at the top */
  gap: 40px;                 /* space between left + right */
  margin-top: 40px;
}

/* Left box */
.box {
    height: 500px;
    width: 150px;
    border: 6px solid #228b22;
    border-radius: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    font-family: 'Verdana', sans-serif;
}

/* Song box */
.song {
    height: auto;
    border: 3px solid #f499cb;
    border-radius: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    min-height: 180px;
    padding-bottom: 20px;
}

/* Small box */
.box2 {
    height: 180px;
    border: 3px solid #f499cb;
    border-radius: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
}

/* To-do box */
.todo {
    height: 180px;
    border-radius: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    font-family: 'Press Start 2P', serif;
    font-size: 14px;
    color: #f9e2a7;
}

/* Moving text animation */
@keyframes moveText {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Video container */
.video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Navigation box */
.newpage {
    height: 125px;
    border: 3px solid #fff;
    border-radius: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
}

/* Underline style */
.underline-diff {
    color: black;
    text-decoration-line: underline;
    text-decoration-color: #f9e2a7;
}

/* Image defaults */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}

/* Right-side image column */
.image-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-pic {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

 .content-wrapper {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
      margin-top: 40px;
    }

    /* Right-side image column */
    .image-column {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .profile-pic {
      width: 200px; /* adjust as needed */
      height: auto;
      border-radius: 10px;
    }


.grid-container {
  display: grid;
  /* Left column: 200px | Middle: fills the rest | Right: 200px */
  grid-template-columns: 200px 1fr 200px; 
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto; /* This centers the site */
  padding: 20px;
}














