a {
  color: black;
  text-decoration: none;
  cursor: url("Cursor Rubin Pink/link.cur"), pointer;
}
hr {
  border: solid 1px black;
}
input {
  border: solid 1px grey;
  border-radius: 15px;
  padding: 3px 15px;
  margin: 5px 3px;
  cursor: url("Cursor Rubin Pink/link.cur"), pointer;
}
.contact {
  border-radius: 50px;
  padding: 15px 15px;
  width: 350px;
  margin: 5px 0;
}
textarea {
  resize: none;
  border-radius: 30px;
  height: 150px;
  border: thin 1px black;
  padding: 15px 15px;
  width: 350px;
  margin: 5px 0;
  cursor: url("Cursor Rubin Pink/link.cur"), pointer;
}
video {
  border-radius: 5px;
}
* {
  font-family: "Inter";
  cursor: url("Cursor Rubin Pink/Arrow.cur"), default;
}
.button {
  background-color: #f4f3f0;
  border: solid 1px black;
  border-radius: 18px;
  font-size: 16px;
  transition: 0.3s ease;
  cursor: url("Cursor Rubin Pink/link.cur"), pointer;
}
.button p {
  -webkit-text-fill-color: black !important; /* iOS-specific fix */
  padding: 0 16px 0 16px;
  margin: 5px 0 5px 0;
  cursor: url("Cursor Rubin Pink/link.cur"), pointer;
  font-weight: 300;
}
button:visited p {
  color: black;
}
.close_hamburger {
  -webkit-text-fill-color: black !important; /* iOS-specific fix */
}
.navbar {
  width: 100%;
}
.navbar td h4 {
  font-weight: 300;
  font-size: 20px;
}
.logo-name {
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
}
::-webkit-scrollbar {
  display: none;
}
.navbar {
  background-color: white; /* Black background */
  width: 100%; /* Full width */
  position: fixed; /* Keep it fixed at the top */
  top: 0; /* Align to the top of the viewport */
  left: 0;
  z-index: 10; /* Ensure it appears above other content */
  text-align: center; /* Center-align table cells */
  transition: ease 0.3s;
  height: 5vw;
  vertical-align: middle;
}
.footer {
  font-size: 20px;
  font-weight: 300;
  width: 95vw;
  padding-bottom: 3vw;
}
.footer a {
  text-decoration: underline;
  color: black;
}
.projects::-webkit-scrollbar {
  display: none;
}
.projects-card {
  background-color: transparent;
  color: black;
  border: solid black 1px;
  flex: 0 0 auto;
  width: 220px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}
.projects-card button p {
  font-size: 16px;
  font-weight: 300;
  padding: 0 8px 0 8px;
  margin: 3px 0 3px 0;
}
.projects-card img {
  width: 333px;
  object-fit: contain;
  border-radius: 10px;
}
.projects-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}
.projects-card p {
  margin: 0;
  font-size: 1rem;
}

@keyframes scrollText {
  0% {
    left: -50%;
  }
  100% {
    left: 0%;
  }
}
.container {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background-color: transparent;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  border-top: solid black 1px;
  border-bottom: solid black 1px;
}
.scrolling-text {
  position: absolute;
  animation: scrollText 20s linear infinite;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  display: inline-block;
  transition: ease-in-out 5s;
}

.hamburger {
  display: none;
}
.footer {
  display: table;
}
.mobile-footer {
  position: absolute;
  transform: translateX(-8px) translateY(+7px);
  display: none;
}
.mobile_block {
  display: none;
}

.mobile_table {
  display: none;
}
.desktop_table {
  display: table;
}
@media (max-width: 768px) {
  .navbar {
    width: 100%;
  }
  .button {
    font-size: 14px;
  }
  .button p {
    padding: 0 10px 0 10px;
    margin: 3px 0 3px 0;
  }
  .not-on-mobile {
    display: none;
  }
  .hamburger {
    display: table-cell;
  }
  .logo_name a {
    font-size: 18px;
    font-style: italic;
  }
  .footer {
    display: none;
  }
  .mobile-footer {
    position: static;
    left: 0;
    bottom: 0;
    display: table;
  }
  .scrolling-text {
    animation: scrollText 10s linear infinite;
    font-size: 0.9em;
    transform: translateY(-3px);
  }
  .container {
    margin-bottom: 10vh;
    height: 35px;
  }
  .desktop_block {
    display: none;
  }
  .mobile_block {
    display: block;
    margin-top: 0;
    margin-bottom: 1vh;
  }

  .desktop_table {
    display: none;
  }
  .mobile_table {
    display: table;
  }
}

.hamburger_manu {
  transition: 0.8s ease;
  width: 100vw;
  height: 100vh;
  background-image: url("images/hamburger_background.png");
  background-attachment: fixed;
  background-color: #f4f3f0;
  z-index: 10000;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-150%);
}
