
html,
body {
  margin: 0;
  padding: 10px;
   
}

@font-face {
    font-family: 'Almendra-Display';
    src: url(../fonts/AlmendraDisplay-Regular.ttf)
}

@font-face {
  font-family: 'Amethysta-Regular';
  src: url(../fonts/Amethysta-Regular.ttf)
}



.noborder {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.buttontext {
    font-size: 40px;
    color: rgba(0, 0, 0, 0.85);
}

.animated:active {
  transform: scale(0.95);
}

.monospace {
  font-family: Courier New, Courier, monospace;
  font-style: normal;
  font-variant: normal;
}

.almendra {
  font-family: 'Almendra-Display';
  font-style: normal;
  font-variant: normal;
}

.amethysta {
  color: #000;
  font-family: 'Amethysta-Regular';
  font-style: normal;
  font-variant: normal;
  line-height: normal;
  font-size: 24px;
  font-weight: 400;
}

.amethysta-projects {
  font-family: 'Amethysta-Regular';
  font-style: normal;
  font-variant: normal;
  line-height: normal;
  font-size: 24px;
  font-weight: 400;
  max-width: 1000px;
}

.uppercased {
  text-transform: uppercase;
}

.with-border {
  border: 10px solid #000000;
  border-radius: 5px;
}

.formatted {
  padding: 2px 20px;
  transition: all 0.3s ease;
  margin: 5px;
}

.white {
  background: rgba(255, 255, 255, 0.85);
}

.big {
  font-size:  100px;
  font-weight:500;
}

.welcome_picture {
  max-width: 1100px;
  display: block;
  margin: 0 auto;
}

.project-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.project-button {
  font-size: 96px;
  padding: 10px 20px;
  width: 100%;
  color: rgba(0, 0, 0, 0.85);
  background-color: rgba(255, 255, 255, 0.85);
  transition: transform 0.2s, background-color 0.3s;
}

#hover-image {
  position: absolute;
  width: 500px;
  height: 300px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.8);
  pointer-events: none;
  z-index: 10;
}

#hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.amethysta-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px; 
  margin-top: 40px;
  font-size: 36px;
  font-family: 'Amethysta-Regular';
}

.amethysta-instagram {
  font-size: 36px;
  font-family: 'Amethysta-Regular';
  margin-top: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit; 
  padding: 0;
  align-items: flex-start;
}

.about-image {
  width: 223px;
  height: 297px;
  object-fit: cover;
  flex-shrink: 0;
}
.myVideo {
  display: block;
  object-fit: cover; /* Optionally, you can use "contain" if you want to maintain aspect ratio without cropping */
  border-radius: 20px; /* Remove rounded corners, or adjust if you prefer */
  box-shadow: 0 0 20px 5px pink; /* Optional: keep the glowing effect */
  overflow: hidden; /* Ensures no overflow */
  margin-top: 10px;
}

.carousel {
  width: 100%; 
  max-width: 2000px;
  height: 100vh; 
  overflow: hidden;
  position: fixed; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  display: flex;
  align-items: center; 
  justify-content: center; 
  border: none;
}

.carousel-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.carousel-image {
  min-width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.heading-section {
  display:flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 100px;
  min-width: 80vw;
}

.navigation {
  margin-left: -100px;
}
.bottom-menu{
  position:fixed;
  right: 95;
  bottom: 0;
  z-index: 1000;
  margin-bottom: 10px;
}



