/* ==============================
   INTERNETGIRL ♡
   ============================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 35px 0;
  background-image: url("/background.png");
  background-repeat: repeat;
  color: #111;
  font-family: "Courier New", monospace;
  font-size: 13px;
}


/* ==============================
   WHOLE WEBSITE
   ============================== */

.site {
  width: 765px;
  margin: 0 auto;
  background-color: #fffafd;
  border: 2px solid #222;
}


/* ==============================
   HEADER
   ============================== */

.header {
  height: 190px;
  display: flex;
  position: relative;
  border-bottom: 2px solid #222;
  overflow: hidden;
}


/* CATGIRL BANNER */

.banner-image {
  width: 190px;
  height: 188px;
  flex-shrink: 0;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* HEADER WORDS */

.header-text {
  padding: 35px 0 0 38px;
}

.header-text h1 {
  margin: 0 0 12px 0;
  color: #f58ab8;
  font-size: 30px;
  font-weight: bold;
}

.subtitle {
  margin: 0 0 14px 0;
}

.online {
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  background-color: #f8d7e5;
  border: 1px solid #222;
}


/* LITTLE ASCII STARS */

.header-symbol {
  position: absolute;
  right: 24px;
  bottom: 25px;
  color: #f58ab8;
  text-align: center;
  line-height: 1.5;
}


/* ==============================
   NAVIGATION
   ============================== */

.nav {
  display: flex;
  height: 37px;
  background-color: #f8d7e5;
  border-bottom: 2px solid #222;
}

.nav a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #111;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;

  border-right: 1px solid #222;
}

.nav a:last-child {
  border-right: none;
}

.nav a:hover {
  background-color: #222;
  color: #f8d7e5;
}


/* ==============================
   HOMEPAGE LAYOUT
   ============================== */

.page-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px;
  padding: 10px;
}

.sidebar,
.main {
  min-width: 0;
}


/* ==============================
   GENERAL BOXES
   ============================== */

.box {
  border: 1px solid #222;
  background-color: #fff;
  margin-bottom: 10px;
}

.box-title {
  background-color: #f8d7e5;
  border-bottom: 1px solid #222;
  text-align: center;
  font-weight: bold;
  padding: 6px;
}

.box-content {
  padding: 12px;
  line-height: 1.5;
}


/* ==============================
   ABOUT ME
   ============================== */

.profile-area {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafd;
  border-bottom: 1px solid #222;
}

.profile-pixelgirl {
  width: 65px;
  height: auto;
  display: block;
  image-rendering: pixelated;
}


/* ==============================
   LINKS
   ============================== */

a {
  color: #d94d83;
}

a:hover {
  color: #111;
}


/* ==============================
   CURRENTLY
   ============================== */

.currently p {
  margin: 0;
  padding: 8px 0 11px 0;
  border-bottom: 1px dotted #aaa;
  line-height: 1.7;
}

.currently p:first-child {
  padding-top: 0;
}

.currently p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.currently span {
  color: #d94d83;
}


/* ==============================
   PIC OF THE WEEK
   ============================== */

.camera-widget {
  text-align: center;
  margin-top: 16px;
}

.camera-title {
  color: #d94d83;
  margin-bottom: 8px;
}


/* CAMERA CONTAINER */

.camera {
  position: relative;
  width: 200px;
  height: 190px;
  margin: 0 auto;
}


/* PHOTO INSIDE CAMERA */

.camera-photo {
  position: absolute;

  width: 103px;
  height: 103px;

  left: 25px;
  top: 43px;

  object-fit: cover;

  z-index: 1;
}


/* CAMERA PNG */

.camera-frame {
  position: absolute;

  width: 200px;
  height: auto;

  left: 0;
  top: 0;

  z-index: 2;

  pointer-events: none;
}


/* INVISIBLE CLICK BUTTONS */

.camera-button {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
}


/* PREVIOUS BUTTON */

.camera-prev {
  width: 30px;
  height: 35px;
  right: 20px;
  top: 103px;
}


/* NEXT BUTTON */

.camera-next {
  width: 30px;
  height: 35px;
  right: 20px;
  top: 53px;
}


/* PHOTO NUMBER */

.photo-counter {
  color: #d94d83;
  font-size: 11px;
  margin-top: 8px;
}


/* ==============================
   WELCOME BOX
   ============================== */

.welcome-box p {
  margin-top: 0;
  line-height: 1.55;
}


/* ==============================
   SITE UPDATES
   ============================== */

.updates p {
  margin-top: 0;
  line-height: 1.5;
}

.updates strong {
  color: #d94d83;
}


/* ==============================
   BULLETIN BOARD
   ============================== */

.bulletin {
  margin-top: 10px;
}

.bulletin-title {
  border: 1px solid #222;
}


/* IMPORTANT:
   no background behind the board
*/

.bulletin-board {
  background: transparent;
  text-align: center;
  padding: 0;
}


/* ACTUAL BULLETIN BOARD IMAGE */

.bulletin-board img {
  display: block;

  width: 480px;
  max-width: 95%;
  height: auto;

  margin: 48px auto;
}


/* ==============================
   FOOTER
   ============================== */

footer {
  background-color: #f8d7e5;
  border-top: 2px solid #222;
  text-align: center;
  padding: 10px;
  font-size: 11px;
}


/* ==============================
   SMALL SCREENS
   ============================== */

@media (max-width: 800px) {

  body {
    padding: 10px;
  }

  .site {
    width: 100%;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .header-text {
    padding-left: 20px;
  }

  .header-symbol {
    display: none;
  }

  .nav {
    height: auto;
    flex-wrap: wrap;
  }

  .nav a {
    min-width: 50%;
    padding: 10px 5px;
    border-bottom: 1px solid #222;
  }

  .bulletin-board img {
    width: 95%;
    margin: 30px auto;
  }
}