body {
  background-color: #76A0A0;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

body {
  font-family: "Oxygen", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

.title {
  font-family: "rooney-sans", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 46px;
  color: #fff;
}

.subtitle {
  font-family: "Oxygen", Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
}

@media screen and (min-width: 1366px) {
  body {
    font-size: 22px;
  }
  .title {
    font-size: 55px;
  }
}
#main-header {
  background-color: #76A0A0;
  top: 5px;
  position: sticky;
  z-index: 10;
  border-radius: 70px;
  padding: 10px;
  height: 102px;
}

#header-logo {
  margin-left: 15px;
  max-width: 80px;
}
#header-logo img {
  margin-top: 10px;
}

#main-nav {
  display: none;
}

#main-nav ul li a {
  font-size: 31px;
  margin-left: 40px;
  transition: all 0.3s ease-in-out;
}
#main-nav ul li a:hover {
  color: #242629;
}

#header-socials {
  display: none;
}

#mobile-nav.display {
  display: block;
}

#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #76A0A0;
  z-index: 100;
}
#mobile-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  margin-top: 20px;
}
#mobile-nav div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#mobile-nav div a img {
  height: 100px;
  padding: 10px;
}

#mobile-nav ul li a {
  display: flex;
  margin-top: 10%;
  transition: all 0.3s ease-in-out;
}
#mobile-nav ul li a:hover {
  color: #242629;
}
#mobile-nav ul li a img {
  width: 80px;
}

#x-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px 10px 20px;
  margin: 20px;
  color: #242629;
  transition: all 0.3s ease-in-out;
}
#x-button:hover {
  color: #fff;
  cursor: pointer;
}

#burger-menu {
  display: flex;
  padding: 10px;
  justify-content: flex-end;
}
#burger-menu img {
  max-width: 80px;
}
#burger-menu:hover {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  #header-logo {
    margin-left: 20px;
  }
  #burger-menu {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1366px) {
  #header-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  #header-socials ul {
    display: flex;
  }
  #burger-menu {
    display: none;
  }
  #main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #main-nav ul {
    display: flex;
  }
}
footer {
  padding: 20px;
  height: 180px;
}

#footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#footer-socials ul {
  display: flex;
}

#footer-logo {
  text-align: center;
}
#footer-logo img {
  max-width: 100px;
}

#top-button img {
  max-width: 50px;
}

#copyright {
  display: flex;
  justify-content: center;
  padding: 20px;
}

/* form elements */
#contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-style {
  font-family: "Oxygen", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #242629;
  border: none;
  margin-top: 16px;
  padding: 10px;
  border-radius: 10px;
}

.form-style input:focus, select:focus, textarea:focus, #news-email:focus, #name:focus, #email:focus {
  outline: 3px solid #F09093;
}

#name, #email, textarea {
  width: 85vw;
}

textarea {
  height: 45vh;
  resize: none;
}

#send-button {
  background-color: #F09093;
  display: flex;
  color: #fff;
  border: none;
  margin-top: 20px;
  font-size: 30px;
  margin-bottom: 5px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
#send-button:hover {
  cursor: pointer;
  background-color: #fff;
  color: #F09093;
}

@media screen and (min-width: 768px) {
  .form-style {
    font-size: 22px;
  }
  #name, #email, textarea {
    width: 55vw;
  }
  textarea {
    height: 25vh;
  }
}
@media screen and (min-width: 1366px) {
  #name, #email, textarea {
    width: 40vw;
  }
  textarea {
    height: 35vh;
  }
}
#buttons-con {
  background-color: #242629;
  border-radius: 50px;
  margin-left: 20px;
  margin-right: 20px;
}

#section-buttons img {
  height: 100px;
}

#the-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.button-con {
  margin-top: 50px;
  position: relative;
  display: flex;
  align-content: center;
}

.button-effect {
  position: absolute; /* Position the rock-hand image absolutely */
  bottom: 100%; /* Position the image above its default position */
  left: 50%; /* Align the image horizontally */
  transform: translateX(-50%); /* Center the image horizontally */
  margin-bottom: -5px; /* Adjust the margin between the rock-hand image and the about button */
}

.button {
  width: 200px;
  text-align: center;
  padding: 20px;
  border-radius: 45px;
  z-index: 1;
}
.button a {
  font-size: 20px;
}
.button:hover {
  cursor: pointer;
}
.button:last-child {
  margin-bottom: 50px;
}

#about-btn {
  background-color: #F09093;
}

#works-btn {
  background-color: #CBE8CC;
}
#works-btn a {
  color: #242629;
}

#contact-btn {
  background-color: #FBF2CB;
}
#contact-btn a {
  color: #76A0A0;
}

#cycle-buttons {
  display: flex;
  justify-content: space-evenly;
}
#cycle-buttons div a img {
  max-width: 50px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  #the-buttons {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 70px;
  }
  .button:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1366px) {
  .button {
    width: 250px;
  }
  .button a {
    font-size: 30px;
  }
  #about-btn {
    margin-left: 80px;
  }
  #contact-btn {
    margin-right: 80px;
  }
}
.social-icons li {
  width: 50px;
  margin: 15px;
}
.social-icons img {
  width: 100%;
  object-fit: cover;
}

:root {
  --plyr-color-main: #F09093;
  --plyr-control-icon-size: 15px;
  --plyr-control-radius: 20px;
  --plyr-font-family: "Oxygen", Arial, Helvetica, sans-serif;
  --plyr-controls-spacing: 15px;
}

#hero-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 28, 61, 0.6);
  overflow: hidden;
}

#hero-animation {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
#hero-animation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#myname {
  margin-top: 70px;
  font-size: 80px;
  line-height: 70px;
  text-shadow: 1px 1px 3px #000;
}

#job {
  font-size: 45px;
  line-height: 50px;
  color: #fff;
  text-align: right;
  margin-top: 25vh;
  margin-bottom: 25vh;
  text-shadow: 1px 1px 3px #000;
}

#demo-con {
  margin-top: 30px;
  margin-bottom: 30px;
}
#demo-con h2 {
  text-align: center;
}

#about {
  background-color: #76A0A0;
  border-radius: 25px;
  padding-top: 20px;
  padding-bottom: 50px;
}
#about h2 {
  text-align: center;
  color: #fff;
}
#about p {
  color: #fff;
  padding: 30px 10px 0px 10px;
  line-height: 1.2;
}

#headshot {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
#headshot:hover {
  cursor: pointer;
}

#about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#about-textbox {
  margin-top: 20px;
  background-color: #F09093;
  border-radius: 10px;
}
#about-textbox p {
  padding: 20px;
  margin: 0;
}

#roof {
  position: relative;
  height: 100%;
}

#smoke {
  position: relative;
  height: 100%;
  visibility: hidden;
}

#works {
  padding-left: 0px;
  padding-right: 0px;
}
#works P {
  text-align: center;
  padding: 15px;
  background-color: #fff;
}

#works h2 {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#works-gallery {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
#works-gallery .preview {
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
}
#works-gallery h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  text-align: center;
  font-size: 22px;
  background-color: rgba(36, 38, 41, 0.8392156863);
  padding: 10px;
  border-radius: 50px;
}

#works-gallery div a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98%;
  background-color: rgba(0, 0, 0, 0.247);
  transition: opacity 0.2s ease;
}

#works-gallery div a:hover::before {
  opacity: 0;
}

#contact h2 {
  text-align: center;
}

#contact p {
  text-align: center;
}

.garden {
  margin: 20px;
  height: 80px;
  background-image: url(../../images/tulip.svg);
  background-repeat: repeat-x;
  background-repeat: space;
}

@media screen and (min-width: 768px) {
  #works {
    padding-left: 56px;
    padding-right: 56px;
  }
  #works-gallery .preview {
    flex-direction: row;
    max-width: 40%;
    flex: 1 0 calc(50% - 16px);
    flex-basis: calc(50% - 16px);
    margin: 5px;
  }
  #works-gallery h3 {
    font-size: 24px;
  }
}
#project-hero-img {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
#project-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#project-hero-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s ease;
}

#project-title, #project-blurb {
  z-index: 2;
  padding-right: 30px;
  color: #fff;
}

#project-title {
  margin-top: 80px;
  line-height: 50px;
}

#project-blurb {
  margin-top: 20px;
}

#project-link {
  z-index: 2;
  text-align: center;
  position: absolute;
  bottom: 5vh;
  right: 5vw;
}
#project-link a img {
  max-width: 80px;
}

#project-info {
  background-color: #fff;
  border-radius: 15px;
}
#project-info h2 {
  color: #242629;
  text-align: center;
  padding-top: 30px;
}

#software, #process, #challenges, #final-result {
  padding-left: 20px;
  padding-right: 20px;
}
#software p, #process p, #challenges p, #final-result p {
  margin-bottom: 30px;
  margin-top: 30px;
}

#software {
  text-align: center;
}

.project-media {
  max-width: 600px;
  margin-bottom: 10px;
}

#media-block-1, #media-block-2, #media-block-3 {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#text-link {
  text-align: center;
}
#text-link a {
  color: #F09093;
}

#project-list {
  background-color: #fff;
  padding: 25px;
  border-radius: 50px;
  text-align: center;
}
#project-list h2 {
  color: #000;
  margin-bottom: 15px;
}
#project-list h3 {
  font-weight: bold;
}
#project-list p {
  margin-bottom: 15px;
}
#project-list a {
  color: #F09093;
}

#add-project, #edit-project, #login {
  padding: 25px;
}
#add-project h2, #edit-project h2, #login h2 {
  margin-bottom: 15px;
  text-align: center;
}
#add-project form label, #edit-project form label, #login form label {
  font-weight: bold;
}
#add-project textarea, #edit-project textarea, #login textarea {
  padding: 10px;
  font-family: "Oxygen", Arial, Helvetica, sans-serif;
  font-size: 16px;
  height: 15vh;
  border: none;
  border-radius: 10px;
}
#add-project input, #edit-project input, #login input {
  padding: 10px;
  font-family: "Oxygen", Arial, Helvetica, sans-serif;
  font-size: 18px;
  height: 40px;
  width: 600px;
  border: none;
  border-radius: 10px;
}
#add-project img, #edit-project img, #login img {
  max-height: 300px;
}

#logout {
  text-align: right;
}

.admin-button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  max-width: 200px;
  border: none;
  background-color: #F09093;
  border-radius: 50px;
}/*# sourceMappingURL=main.css.map */