header {
  display: flex;
  color: #012328;
  justify-content: space-between;
}

nav {
  text-align: center;
}

.header-navigation {
  display: flex;
}
.header-navigation li {
  list-style: none;
  text-decoration: none;
  padding: 1rem;
  transition-duration: 750ms;
  font-size: 1.25rem;
  border: 2px solid #01232800;
}
.header-navigation li {
  color: #5bb0ec;
}
.header-navigation li:hover {
  color: #ebecee;
  border: 2px solid #ebecee;
  padding: auto;
}
.header-navigation a {
  text-decoration: none;
}

.logo {
  margin: 1rem;
  height: 50px;
}

.logo-wrapper {
  text-align: end;
}

.btn-wrapper {
  display: flex;
  align-items: center;
}

.contact-btn {
  background: none;
  padding: 15px 35px;
  margin: 1rem;
  border: 2px solid #ebecee;
  text-decoration: none;
  color: #ebecee;
  transition: 750ms;
}
.contact-btn:hover {
  background: #ebecee;
  color: #010b2e;
}

.flip-card {
  margin: 5px;
  width: 24%;
  display: flex;
  transform-style: preserve-3d;
  transition: 1s ease-out 100ms;
  perspective: 100px;
}
.flip-card:hover {
  transform: rotateX(180deg);
}

.project-card-front {
  backface-visibility: hidden;
}

.project-card-back {
  transform: rotateX(180deg);
  background: #20202050;
  color: #323131;
  z-index: -1;
  position: absolute;
  justify-content: center;
  align-self: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.project-card-back h2, .project-card-back h3 {
  text-align: center;
}
.project-card-back .card-row-2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0;
}
.project-card-back a {
  align-self: center;
  background: none;
  padding: 15px 35px;
  margin: 1rem;
  border: 2px solid #ebecee;
  text-decoration: none;
  color: #ebecee;
  transition: 750ms;
  height: 56px;
}
.project-card-back a:hover {
  background: #ebecee;
  color: #010b2e;
}

.project-img {
  width: 100%;
  height: 100%;
}

.about-me {
  width: 80%;
  margin: 3rem auto;
  padding: 1rem;
  line-height: 1.75rem;
  font-size: 1.25rem;
}

.banner-wrapper {
  display: flex;
  margin-top: 7rem;
  margin-bottom: 7rem;
  justify-content: space-around;
}

.banner-text h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  margin-bottom: 0;
}
.banner-text h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0;
  color: #5bb0ec;
}
.banner-text p {
  color: #5bb0ec;
}

.banner-graphic {
  Width: 400px;
}

footer {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  background: #202020;
  align-items: center;
}

.footer-content {
  margin: 1rem;
  display: flex;
}

.footer-navigation {
  padding: 0;
}
.footer-navigation li {
  list-style: none;
  text-decoration: none;
  padding: 0.5rem;
  transition-duration: 750ms;
  border: 2px solid #01232800;
}
.footer-navigation li {
  color: #5bb0ec;
}
.footer-navigation li:hover {
  color: #ebecee;
  border: 2px solid #ebecee;
  padding: auto;
}
.footer-navigation a {
  text-decoration: none;
}

.social-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-image {
  width: 35px;
  margin: 0.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 500px;
}
.contact-form input,
.contact-form textarea,
.contact-form button {
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 0;
  background: #323131;
  border: none;
}

.contact-wrapper {
  margin: 1rem;
}
.contact-wrapper h2 {
  color: #5bb0ec;
  margin: 0.5rem 0 0 0;
}

:root {
  --grey: rgb(46, 46, 46);
  --light-grey: rgb(105, 105, 105);
}

.to-do-main {
  margin: 0 auto;
  width: 50%;
}

input,
button {
  appearance: none;
  border: none;
  outline: none;
  background: none;
}

form {
  margin-bottom: 2rem;
  display: flex;
}

form input {
  flex: 1 1 0;
}

form input,
form button {
  padding: 0.25rem;
  background: var(--light-grey);
}

.task-list {
  margin: 0 auto;
  /* border: 1px solid black; */
  min-height: 800px;
  padding: 1rem;
}

.task {
  display: flex;
  border: 1px solid black;
  padding: 0.25rem 0.5rem;
  margin: 0.5rem 0;
}

.input {
  flex: 1 1 0%;
  color: white;
}

.edit, .delete {
  margin: 0.25rem;
  padding: 0 0.25rem;
  border: none;
  background: none;
  color: white;
}

.task button:hover {
  color: grey;
}

/* triggers when the edit button is pressed */
.save {
  background: var(--light-grey);
  color: black;
}

.banner {
  color: red;
  text-align: center;
  margin: auto;
  display: none;
  font-size: large;
  font-weight: bold;
}

.displayOn {
  display: block;
}

* {
  box-sizing: border-box;
  color: #ebecee;
  scroll-behavior: smooth;
}

html {
  font-size: 16pt;
  font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inconsolata", monospace;
}

body {
  margin: 0;
  background: #010b2e;
}

.active {
  color: #5bb0ec;
}

.project-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

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

/*# sourceMappingURL=main.css.map */
