body {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

p {
  font-family: "Open Sans", sans-serif;
  line-height: 24px;
  margin-bottom: 20px;
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

a {
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

input,
textarea {
  display: block;
  margin: 0;
  padding: 0;
}

.hidden {
  display: none;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  background-color: #222222;
  margin: 0;
}

header {
  padding: 0 20px;
  background-color: #4a4a4a;
  height: 50px;
  display: flex;
  justify-content: space-between;
}
header a {
  text-decoration: none;
}
header nav {
  display: none;
}

#brand {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.logo-anna {
  height: 50px;
  width: auto;
  display: flex;
  align-items: center;
}
.logo-anna:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
ul a {
  color: #fff;
}
ul a:hover {
  color: #ffb6c1;
}
ul li {
  padding: 5px;
  margin-left: 10px;
}
ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
  text-decoration: underline;
  color: #ffb6c1;
}

#hamburger-icon {
  margin: auto 0;
  display: block;
  cursor: pointer;
}
#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.open .bar2 {
  opacity: 0;
}
.open .bar3 {
  transform: rotate(45deg) translate(-6px, -8px);
}
.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu {
  display: none;
  position: absolute;
  background-color: #4a4a4a;
  opacity: 90%;
  top: 50px;
  left: 0;
  height: calc(40vh - 50px);
  width: 100%;
}
.mobile-menu li {
  margin: 10px;
}

@media screen and (min-width: 768px) {
  header nav {
    display: block;
  }
  #hamburger-icon {
    display: none;
  }
}
#home-hero {
  height: 500px;
  background-image: url(../images/Anna-with-laptop.jpeg);
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.718);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#home-hero-heading {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-left: 10%;
}
#home-hero-heading h3:first-child {
  font-weight: 600;
  font-size: 48px;
}
#home-hero-heading h3:nth-child(2) {
  font-style: italic;
}

.hot-pink {
  color: #ff4081;
}

.bold {
  font-weight: bold;
}

.snow {
  width: 100%;
  height: 500px;
  position: absolute;
  z-index: 999;
}

footer {
  background-color: #ff4081;
  padding: 10px 30px;
}
footer #logo-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer #logo-footer img {
  width: 170px;
  height: auto;
}
footer #github-linkedin {
  display: flex;
  justify-content: center;
}
footer #github-linkedin img {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
}
footer p {
  text-align: center;
}

@media screen and (min-width: 768px) {
  #footer-col-2 {
    margin-top: 15%;
  }
}
.project-div {
  background-color: #4a4a4a;
  margin: 40px auto;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.project-div h2 {
  font-weight: 44px;
  font-size: 44px;
  margin: 10px 0 30px 0;
  text-align: center;
}
.project-div img {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  width: 100%;
  margin-bottom: 20px;
}
.project-div .more-button {
  background-color: #f5f5f5;
  border-radius: 25px;
  border: 5px solid #ffb6c1;
  color: #222222;
  padding: 10px;
  float: right;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.project-div .more-button:hover {
  transform: scale(1.1);
  transition: 0.3s;
  border: 5px solid #ff4081;
}

.visit-button {
  background-color: #ffb6c1;
  border-radius: 25px;
  border: 5px solid #ff4081;
  color: #222222;
  padding: 10px;
  font-weight: bold;
  font-size: larger;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.visit-button:hover {
  transform: scale(1.1);
  transition: 0.3s;
  border: 5px solid #ff4081;
}

.soft-pink {
  color: #ffb6c1;
}

@media screen and (min-width: 768px) {
  #project-description {
    display: flex;
    align-items: center;
  }
  p {
    font-size: 20px;
    line-height: 32px;
  }
}
#portrait img {
  padding: 5% 10%;
}
#portrait div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 24px;
}
#portrait div h2 {
  text-align: center;
}
#portrait div a {
  margin-bottom: 20px;
}

#about-texts {
  padding: 0 7%;
}

#skills-tools {
  background-color: #4a4a4a;
  text-align: center;
  margin: 5% auto;
  padding-bottom: 3%;
}
#skills-tools h2 {
  padding: 4% 0;
}
#skills-tools p {
  font-size: 24px;
  line-height: 38px;
}
#skills-tools #tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0 20% 10% 20%;
}
#skills-tools #tools img {
  transition: transform 0.5s ease;
}
#skills-tools #tools img:hover {
  transform: scale(1.2);
}

.download-button {
  padding: 10px 20px;
  background-color: #f76495;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.download-button:hover {
  background-color: #ff4081;
}

@media screen and (min-width: 768px) {
  #portrait div {
    font-size: 36px;
  }
  #skills-tools h2 {
    font-size: 36px;
  }
  #skills-tools p {
    font-size: 26px;
    line-height: 38px;
  }
}
@media screen and (min-width: 1200px) {
  #skills-tools h2 {
    font-size: 48px;
  }
  #skills-tools p {
    font-size: 34px;
    line-height: 54px;
  }
}
#contact {
  padding: 50px 20px;
  text-align: center;
}
#contact .contact-container {
  max-width: 600px;
  margin: 0 auto;
}
#contact .contact-container h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: white;
}
#contact .contact-container p {
  font-size: 14px;
  margin-bottom: 30px;
}
#contact .contact-container .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact .contact-container .contact-form .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #fff;
}
#contact .contact-container .contact-form .form-group label {
  font-size: 14px;
  margin-bottom: 5px;
}
#contact .contact-container .contact-form .form-group input,
#contact .contact-container .contact-form .form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
#contact .contact-container .contact-form .form-group input:focus,
#contact .contact-container .contact-form .form-group textarea:focus {
  border-color: #ff4081;
  outline: none;
}
#contact .contact-container .contact-form .submit-button {
  padding: 10px 20px;
  background-color: #f76495;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
#contact .contact-container .contact-form .submit-button:hover {
  background-color: #ff4081;
}

#contact-image {
  display: none;
}

@media screen and (min-width: 768px) {
  #contact-image {
    display: flex;
  }
  #contact-image img {
    min-width: 100%;
    padding: 30px;
  }
}
#thankyou-con {
  margin: 0;
  padding: 20px;
  background-color: #f76495;
  color: #222222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
#thankyou-con h2 {
  color: #222222;
  font-size: 40px;
}
#thankyou-con p {
  font-size: 20px;
}
#thankyou-con svg {
  width: 60px;
}
#thankyou-con img {
  max-width: 50%;
  height: auto;
  margin-top: 20px;
}

:root {
  --plyr-color-main: #ff6081;
  --plyr-control-icon-size: 15px;
  --plyr-control-radius: 20px;
  --plyr-control-family: "Open Sans", sans-serif;
  --plyr-control-spacing: 15px;
}

#video-section {
  margin: 30px auto;
}

#player-container {
  margin: 20px;
}

#admin-project-list {
  background-color: #f5f5f5;
  padding: 20px;
  font-family: "Open Sans", sans-serif;
}
#admin-project-list h2 {
  font-family: "Roboto", sans-serif;
  color: #ff4081;
  margin-bottom: 20px;
}
#admin-project-list #project-list .project-list {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #222222;
}
#admin-project-list #project-list .project-list a {
  color: #4a90e2;
  text-decoration: none;
  margin-right: 10px;
}
#admin-project-list #project-list .project-list a:hover {
  color: #ff4081;
  text-decoration: underline;
}
#admin-project-list #add-new-project {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#admin-project-list #add-new-project form label {
  display: block;
  margin-bottom: 5px;
  color: #4a4a4a;
  font-weight: bold;
}
#admin-project-list #add-new-project form input[type=text],
#admin-project-list #add-new-project form textarea,
#admin-project-list #add-new-project form input[type=file] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #4a4a4a;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
}
#admin-project-list #add-new-project form input[type=submit] {
  background-color: #4a90e2;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#admin-project-list #add-new-project form input[type=submit]:hover {
  background-color: #2275d7;
}
#admin-project-list #logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}
#admin-project-list #logout-button button {
  background-color: #ff4081;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
#admin-project-list #logout-button button:hover {
  background-color: #f30053;
}
#admin-project-list #logout-button button a[href="logout.php"] {
  color: #fff;
}

#admin-edit-project {
  background-color: #f5f5f5;
  padding: 20px;
}

#edit-project {
  background-color: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#edit-project h2 {
  font-family: "Roboto", sans-serif;
  color: #ff4081;
  margin-bottom: 20px;
}
#edit-project form label {
  display: block;
  margin-bottom: 5px;
  color: #4a4a4a;
  font-weight: bold;
}
#edit-project form input[type=text],
#edit-project form textarea,
#edit-project form input[type=file] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #4a4a4a;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
}
#edit-project form input[type=submit] {
  background-color: #4a90e2;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#edit-project form input[type=submit]:hover {
  background-color: #2275d7;
}

#login-form {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  margin: 50px auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Open Sans", sans-serif;
}
#login-form form {
  display: flex;
  flex-direction: column;
}
#login-form label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #222222;
  margin-bottom: 5px;
}
#login-form input[type=text],
#login-form input[type=password] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #4a4a4a;
  border-radius: 5px;
  font-size: 14px;
}
#login-form input[type=submit] {
  background-color: #ff4081;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
#login-form input[type=submit]:hover {
  background-color: #f30053;
}

body {
  background-color: #222222;
}/*# sourceMappingURL=main.css.map */