* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*HEADER*/
.logo {
  height: 80px;
  width: 50px;
}

.name a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.name a:hover {
  text-decoration: none;
  color: pink;
}

.logo:hover {
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}

.name {
  position: absolute;
  font-size: 25px;
  text-align: center;
  padding: 0px;
  font-family: "Italiana", sans-serif;
}

.a .name:hover {
  color: palevioletred;
}

.italiana-regular {
  font-family: "Italiana", sans-serif;
  font-weight: 40px;
  font-style: normal;
}

svg {
  position: absolute;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding: 0px 0px;
  padding-right: -60px;
  display: flex;
  animation-name: slideIn;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  /*animation-play-state: paused;*/
}

@keyframes slideIn {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.svg1 {
  width: 50px;
  position: absolute;
  padding: 0px 0px;
  margin-left: 15px;
  margin-top: 25px;
  animation-name: slideAt;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes slideAt {
  0% {
    transform: translateX(15%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
    width: 100vw;
  }
}
header {
  height: 80px;
  width: 100vw;
  display: flex;
  position: relative;
  color: black;
  background-color: rgba(255, 243, 243, 0.4);
  justify-content: space-between;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 0px 0px;
}

.nav {
  width: 30vw;
  display: flex;
  justify-content: space-evenly;
  position: relative;
  align-items: center;
}

header li {
  list-style: none;
}

li a {
  color: rgb(0, 0, 0);
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
  text-decoration: none;
}

li a:hover {
  background-color: #000000;
  border-radius: 4px;
  color: white;
}

.subMenu {
  display: none;
  position: absolute;
  width: 320px;
}

.course:hover .subMenu {
  display: block;
  box-shadow: 10px 10px 8px gray;
  padding: 15px;
  background-color: rgba(255, 251, 251, 0.75);
  line-height: 30px;
  border-radius: 20px;
}

.sb {
  position: relative;
}

.subMenu3 {
  display: none;
  position: absolute;
  width: 350px;
  right: 30px;
}

.course3:hover .subMenu3 {
  display: block;
  box-shadow: 10px 10px 8px gray;
  padding: 15px;
  background-color: rgba(255, 251, 251, 0.75);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  line-height: 35px;
  border-radius: 20px;
}

.sb3 {
  position: relative;
}

.course4 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.course4 svg {
  margin-top: -15px;
  margin-left: -15px;
  width: 28px;
  height: 28px;
  animation: none;
  transition: none;
}

.course4:hover {
  background-color: transparent;
  border-radius: 0;
}

.navigation svg {
  position: relative;
  top: 0;
}

.navigation_svg {
  width: 50px;
  height: 50px;
  background-color: none;
}

li a svg:hover {
  background-color: white;
  border-radius: 4px;
  padding: 5px;
}

@media screen and (max-width: 1440px) and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
/* Mobile Styles */
@media screen and (max-width: 768px) {
  header {
    background-color: transparent;
    box-shadow: none;
  }
  .nav {
    width: 20vw;
    flex-direction: column;
    background-color: rgba(255, 243, 243, 0.9);
    position: absolute;
    top: 0px;
    left: 80%;
    padding-top: 10px;
    box-shadow: none;
  }
  .nav li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  /* Hide submenus by default */
  .subMenu, .subMenu3 {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    background-color: transparent;
    padding: 10px 0;
  }
  .course:hover .subMenu, .course3:hover .subMenu3 {
    display: block;
    padding-left: 0;
  }
  /* Hamburger Menu (Mobile Navigation Toggle) */
  .hamburger {
    display: block;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    border: none;
  }
  .hamburger .bar {
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: #000;
    border-radius: 5px;
  }
  /* Toggle Menu Visibility */
  .nav.active {
    display: block;
  }
  .nav li a {
    font-size: 16px;
    padding: 15px 0;
  }
  /* Sign-in Icon */
  .course4 svg {
    width: 25px;
    height: 25px;
  }
}
body {
  background-color: rgba(124, 54, 27, 0.2);
  background-image: url(../pictures/beautifulAm.avif);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.article h4 {
  height: 30%;
  width: 25%;
}

.article {
  position: relative;
  height: 60%;
  width: 60%;
  align-items: center;
  font-family: "Italiana";
  padding: 20px;
  margin-top: 10%;
  margin-left: 35%;
  color: black;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 1px solid black;
  align-items: center;
  font-size: 15px;
  line-height: 25px;
}

.article2 {
  position: relative;
  display: flex;
  justify-items: center;
  align-items: center;
  margin-top: 2%;
  margin-left: 2%;
  height: 40vh;
  width: 80vw;
  font-family: "Italiana";
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 1px solid black;
  align-items: center;
  font-size: 15px;
  padding: 20px;
}

.article2 h1 {
  height: 50%;
  width: 25%;
  margin: 20px;
}

.article, .article2 {
  opacity: 0;
  transform: translateX(-100%); /* Start position, off to the left */
  animation: fadeInMove 2s forwards 1s; /* Fade in and move after 5s delay */
}

/* Keyframe animation for fading in and moving */
@keyframes fadeInMove {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(20px);
  }
}
/* Media Queries for Mobile Devices */
@media (max-width: 600px) {
  .article {
    width: 90%;
    margin-left: 5%;
    margin-top: 5%;
    font-size: 14px;
    padding: 20px;
  }
  /* Adjusting article2 layout for small screens */
  .article2 {
    width: 95vw;
    margin-left: 2.5%;
    height: 60vh;
    font-size: 14px;
    padding: 30px;
  }
  /* Adjusting headers in article2 */
  .article2 h1 {
    font-size: 1.5em;
    margin: 10px;
  }
  /* Making h4 element more responsive */
  .article h4 {
    width: 100%;
    height: auto;
  }
  /* Adjusting body background for mobile */
  body {
    background-size: auto;
  }
  /* Font size adjustments */
  .article, .article2 {
    font-size: 13px;
    line-height: 20px;
  }
}/*# sourceMappingURL=toknow.css.map */