/* Variables */
:root {
  --prussian-blue: #0b3954;
  --celestial-blue: #449dd1;
  --bittersweet: #ff6663;
  --chefchaouen-blue: #4392f1;
  --white: #fefffe;
  --black: #000000;
  --dao-green: #6d8a79;
}

/* Shared Styles */
* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  margin: 0;
}

section {
  height: 100vh;
  padding: 8px 16px;
  position: relative;
}

.title,
.subtitle {
  margin-top: 0;
  text-align: center;
}

.title {
  font-size: 6em;
  margin-bottom: 0;
}

.subtitle {
  font-size: 4em;
  margin-top: 0;
  margin-bottom: 1rem;
}

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

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

/* Home */
#home {
  background-color: var(--white);
}

#home-container {
  height: 100%;
}

#content {
  flex-grow: 1;
}

#home .title,
#home .subtitle {
  color: var(--bittersweet);
}

#projects h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 2em;
  color: var(--chefchaouen-blue);
}

#projects .flex-row {
  column-gap: 1rem;
}

#projects a {
  text-decoration: none;
}

#projects img {
  max-height: 80px;
  max-width: 80px;
}

#social-container {
  column-gap: 0.5rem;
}

#social-container i {
  font-size: 2em;
}
