:root {
  --bg-img: white;
  --border-color: lightgrey;
  --window-bg: white;
}

*, *::before, *::after {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, fill 0.4s ease;
}

body {
  background-image: var(--bg-img);
  color: var(--border-color);
  font-family: Verdana;
  transition: all 0.3s ease;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
}

header {
  width: 40%;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 50px;
  background: var(--window-bg);
  border-style: solid;
  border-width: 2px;
  border-color: var(--border-color);
}

header button {
  background: var(--window-bg);
  border-style: solid;
  border-width: 2px;
  transition: 0.3s;
  cursor: pointer;
}

#sbtn {
  border-color: #566d97;
}

#sbtn:hover {
  background: #FFF;
  border-color: #ADC0E1;
}

#rbtn {
  border-color: #9e3623;
}

#rbtn:hover {
  background: #ff8982;
  border-color: #db6b64;
}

content {
  width: 40%;
  max-width: 700px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--window-bg);
  border-style: solid;
  border-width: 2px;
  border-color: var(--border-color);
}

.info_pics_container {
  margin: 20px;
  width: 40%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

#ipc_pfp img {
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
  width: 90px;
  height: 90px;
}

.images_container {
  background: white;
  max-width: 500px;
  height: 150px;
  overflow-y: scroll;
}

.about_container, .images_container, .journal_container {
  margin: 10px;
}