@font-face {
    font-family: JitterCreeps;
    src: url(Fonts/JitterCreeps-Regular.ttf) format("truetype");
}

@font-face {
    font-family: Cutesy;
    src: url(/Fonts/Cutesy.ttf);
}

.header {
  width: 900px;
  margin: auto;
  padding: 20px;
  background-color: #4f6e4b;
  border-radius: 8px;
  border: #FFFBEA solid 2px;
}

.header-flex {
  display: flex;
  align-items: center;       /* vertically centers GIFs and text */
  justify-content: center;   /* centers text block between GIFs */
  gap: 90px;                 /* space between text and GIFs */
}

.bookgif {
  width: 50px;
  height: 50px;
}

.header-text {
  text-align: center;        /* subtitle under title */
}

.header-title {
  font-family: JitterCreeps;
  font-size: 48px;
  color: #b27c9d;
  margin: 0;
}

.header-subtitle {
  font-family: JitterCreeps;
  font-size: 24px;
  color: #83aa8d;
  margin: 0;
}

.navcontent {
    width: 900px; /* or whatever */
    height: 30px; /* or whatever */
    margin: auto;
    padding: 20px;
    background-color: #83aa8d; /* soft cream */
    border-radius: 8px;
    margin-top: 10px;
    border: #FFFBEA solid 1px;
}

.wipgif {
    width: 70px;
    height: 30px;
}

.navbar {
    font-family: JitterCreeps;
    font-size: 18px;
    margin-top: -35px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: rgb(237, 208, 213);
    color: #333; /* soft cream */
}

.main-content {
    width: 900px;
    min-height: 500vh;
    margin: auto;
    padding: 20px;
    background-color: #FFFBEA; /* soft cream */
    border-radius: 8px;
    margin-top: 10px;
}

.sidebar-left {
    width: 200px;
    min-height: 100vh;
    float: left;
    margin-right: 20px;
    border: #a8a8a8 solid 2px;
}

.avatar-box {
    width: 150px;
    height: 150px;
    margin: auto;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 20px;
    border: #a8a8a8 solid 5px;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.name-tag {
    width: 150px;
    height: 20px;
    margin: auto;
    background-color: #9caf88; /* soft green */
    border: #9caf88 solid 5px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-name {
    font-family: JitterCreeps;
    font-size: 20px;
    color: #333;
    text-align: center;
}

.miniaboutme {
    font-family: Cutesy;
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

.stamps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.blinkies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.middle-content {
    border: #a8a8a8 solid 2px;
    min-height: 500vh;
    width: 480px;
    margin: auto;
}

.welcome-message {
    width: 400px;
    height: 200px;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-gif {
    width: 300px;
    height: 150px;
}

.posttitle {
    font-family: JitterCreeps;
    font-size: 30px;
    color: #333;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 10px;
}

.instagram-post {
width: 400px;
overflow: hidden;
}

.instagram-media {
    display: block !important;
    margin-left: 45px !important;    
}

.insta-scale {
    transform: scale(0.5);
    transform-origin: top center;
    width: 400px;
}

.sidebar-right {
    width: 200px;
    min-height: 100vh;
    float: right;
    border: #a8a8a8 solid 2px;
}

.news-section {
    width: 200px;
    border: #a8a8a8 solid 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news-title {
    font-family: JitterCreeps;
    font-size: 20px;
    color: #333;
    text-align: center;
}

.news-item {
    font-family: Cutesy;
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-top: 5px;
}

.catgif {
    width: 200px;
    height: 150px;
}

.footer {
    width: 900px;
    height: 40px;
    margin: auto;
    padding: 10px;
    background-color: #83aa8d; /* soft cream */
    border-radius: 8px;
    margin-top: 10px;
    border: #FFFBEA solid 1px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-text {
    font-family: JitterCreeps;
    font-size: 14px;
    color: #333;
    text-align: center;
    margin: auto;
}