/* MAIN ELEMENTS */

* {
  font-family: "Times New Roman", Times, serif, Arial, Helvetica, sans-serif;
}

body {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

nav {
  width: 70vw;
  margin: 30px auto;
  text-align: center;
  box-sizing: border-box;
}

p {
  margin: 0;
}

a {
  color: #777;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: underline;
}

h3 {
  margin: 0;
  text-align: center;
  background: #80a0c6 !important;
  border-bottom: 0 !important;
}

main {
  width: 70vw;
  margin: 0 auto;
}

footer {
  box-sizing: border-box;
  width: 70vw;
  text-align: center;
  margin: 30px auto 0 auto;
  padding-bottom: 30px;
}

/* RANDOM ELEMENTS */

#welcome-text {
  text-align: center;
  margin: 0 0 30px 0;
}

#intro-text {
  text-align: center;
  display: block;
  margin-bottom: 60px;
}

#content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* SIDEBAR SECTION */

#sidebar {
  width: 250px;
  box-sizing: border-box;
  margin-right: 30px;
}

.sidebar-row {
  border-bottom: 1px solid #fff;
  background: #e9eff5;
  box-sizing: border-box;
  padding: 6px 15px;
}

.sidebar-row:hover {
  background: #f4f7fa;
}

.sidebar-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

/* MAIN CONTENT */

#about {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 60%;
}

.about-section {
  box-sizing: border-box;
}

.about-section:first-child {
  margin-right: 30px;
}

.about-section {
  display: flex;
  flex-direction: column;
}

.about-section > div {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.about-section > div p,
.about-section > div strong {
  margin-right: 5px;
}

/* ANIMATIONS */

@keyframes flash-animation {
  0% {
    color: #00000000;
  }
  50% {
    color: #000;
  }
  100% {
    color: #00000000;
  }
}

.flash {
  animation: flash-animation 3s ease-in-out infinite;
}
