.services {
  width: 100%;
  font-size: 2rem; }
  .services p {
    max-width: 70%;
    margin: 0 auto; }
  .services img {
    max-width: 80%;
    margin: 0 auto; }

@font-face {
  font-family: 'Roboto';
  font-display: auto;
  src: local("Roboto"); }

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Roboto', sans-serif; }

#root {
  width: 100%;
  background: #772c2c; }

.container {
  background: #fefefe;
  min-height: 100vh;
  width: 80%;
  box-shadow: 50px 10px #6c2828;
  text-align: center;
  border-radius: 10px;
  overflow: hidden; }

.content-page {
  display: none; }
  .content-page.active {
    display: block; }

.glass {
  background: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.65)); }

header {
  margin-top: 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative; }
  header nav {
    align-self: flex-end; }

footer {
  width: 100%;
  margin: 0;
  margin-top: 5%; }

.title {
  color: #772c2c;
  text-shadow: 2px 1px blacky;
  font-family: 'Ubuntu', sans-serif;
  margin-top: 3rem;
  margin-bottom: 1.5rem; }

ul, ol {
  list-style: none; }

.home .jumbotron {
  background-image: url(77bfb6dc7f2dda8c4010ba01bb535f18.png);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: black; }

.home .cardContainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.home .card {
  flex: 1;
  overflow: wrap; }
  .home .card img {
    max-width: 100%; }

#projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  #projects .project {
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 8px;
    width: calc(50% - 4px);
    flex-basis: 30%; }
    #projects .project img {
      max-width: 100%;
      height: auto; }
  #projects .project:nth-of-type(2n) {
    margin-right: 0; }
  @media screen and (min-width: 50em) {
    #projects .project {
      width: calc(25% - 6px); } }

@media screen and (max-width: 500px) {
  body {
    background-attachment: blue; } }

@media screen and (max-width: 750px) {
  .services p {
    max-width: 90%; } }

