/* Universal CSS - to be used throughout the application  */
html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

html {
  font-family: "Raleway", sans-serif;
}

body {
  background-image: url("../images/greenspace.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position-y: top;
  color: white;
}

body > * {
  flex-shrink: 0;
}

a {
  color: inherit;
}

.first-name-label {
  font-size: 60px;
  color: white;
  font-weight: 100;
}

.last-name-label {
  font-size: 60px;
  color: white;
  font-weight: 600;
  margin-left: -6px;
}

.personal-label {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  margin-left: 10px;
}

ul.dropdown-content.select-dropdown li span {
  color: #ff9800;
}

.personal-card {
  width: 730px;
  padding: 30px;
  margin-bottom: 0;
}

.personal-info {
  margin: auto;
}

.body-white {
  background-color: white;
  flex-grow: 1;
}

.page-footer {
  background-image: url("../images/greenspace.jpg");
  background-position-y: bottom;
}

.contact {
  /*margin-top: -10px;*/
  /*margin-left: 25px;*/
}

.avatar {
  /*margin-top: 10px;*/
  border: 5px solid white;
  margin: 5px;
}

.desc {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.tile {
  border: 5px teal solid;
}

.g-button {
  display: inline-block;
  width: 100px;
}

.project-image {
  width: 400px;
}

.my-button {
  width: 300px;
  margin: 5px;
  border-radius: 10px;
}

@media only screen and (max-width: 600px) {
  body {
    background-image: url("../images/greenspace.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
    color: white;
  }

  .personal-card {
    width: 100%;
    /*margin: auto;*/
  }

  .personal-avatar {
    text-align: center;
  }

  .avatar {
    display: inline-block;
    border: 5px solid white;
    margin: 5px;
  }

  .first-name-label {
    font-size: 48px;
    color: white;
    font-weight: 100;
  }

  .last-name-label {
    font-size: 48px;
    color: white;
    font-weight: 600;
    margin-left: -6px;
  }

  .personal-label {
    /*font-family: 'Open Sans', sans-serif;*/
    font-size: 21px;
    margin-left: 10px;
  }

  .project-image {
    width: 280px;
  }

  .page-footer {
    background-image: url("../images/greenspace.jpg");
    background-position: bottom;
  }
}
