@font-face {
  font-family: 'Tiltortion';
  src: url('fonts/Tiltortion.otf') format('opentype');
}

@font-face {
  font-family: 'Yoga';
  src: url('fonts/Yoga-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'CofeSans';
  src: url('fonts/CofeSans-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'kiwi';
  src: url('fonts/kiwi.otf') format('opentype');
}

@font-face {
  font-family: 'dap';
  src: url('fonts/dap.otf') format('opentype');
}

@font-face {
  font-family: 'heavy';
  src: url('fonts/heavy.otf') format('opentype');
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.wrapper {
  max-width: 1200px; /* Adjust as needed */
  margin: 0 auto; /* This will center your content */
  position: relative;
}


.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.title {
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px; /* This adds some space around your title */
  display: inline-block;
}


.m {
  font-family: 'Tiltortion', sans-serif;
  font-size: 8vh;
  color: #fefae0;
  position: relative;
  padding-top: 100px;
  /* Add other CSS properties as needed */
}

.a {
  font-family: 'CofeSans', serif;
  font-size: 14vh;
  color: #e9edc9;
  position: relative;
  margin-left: 10px;
  top: 35px;
  /* Add other CSS properties as needed */
}

.i {
  font-family: 'Yoga', monospace;
  font-size: 21vh;
  color: #d4a373;
  /* Add other CSS properties as needed */
}

.g {
  font-family: 'kiwi', serif;
  font-size: 15vh;
  color: #ccd5ae;
  /* Add other CSS properties as needed */
}

.o {
  margin-top: 5vh;
  font-family: 'heavy', cursive, sans-serif;
  font-size: 5vh;
  color: #fefae0;
  position: relative;
  top: 5px;
  
  /* Add other CSS properties as needed */
}


.pebbles {
  margin-top: 35vw;
  position: absolute;
  display: flex;
  flex-direction: row; /* This will still be row because we'll use absolute positioning */
  justify-content: space-between;
  align-items: center;
  width: 100%; 
  height: 50%;

}

@media (min-width: 1024px) {
  .pebbles {
    position:relative
    margin-bottom: 500px;
    padding-bottom: 25vh;
  }
}

.spotify, .applemusic {
  position: absolute; /* This is important to be able to move each div separately */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spotify {
  position: relative;
  left: 0; /* Positioned on the left side */
  top: 0; /* Positioned at the top */
}

.spotify-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spotify-icon {
  max-width: 30%; /* You might need to adjust this according to your needs */
  height: auto;
  margin-top: 30vh;
  padding-left: 20vw;
}

@media (min-width: 1024px) {
  .spotify-icon {
    margin-top: 0;
  }
}

.applemusic {
  position: relative;
  right: 0; /* Positioned on the right side */
  bottom: 0; /* Positioned at the bottom */
}

.applemusic-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.applemusic-icon {
  max-width: 40%; /* You might need to adjust this according to your needs */
  height: auto;
  padding-top: 6vh;
  padding-left: 5px;
}

.pebble1 {
  position: relative; 
  width: 50vw;
  height: auto;
  margin-top: 25vh;
  padding-left: 5vw;
  width: 50vw; /* Width relative to the viewport width */
  height: auto;
}

@media (min-width: 1024px) {
  .pebble1 {
    margin-top: 0;
    padding-left: 5vw;
  }
}

.pebble2 {
  width: 30vw; /* Width relative to the viewport width */
  height: auto;
}


.rockdiv {
  position: absolute;
  bottom: 0; 
  left: 85vw;
  transform: translateX(-50%);
  z-index: 0;
}

.rock {
  width: 80vw;
  height: 30vh;
  
}

@media (min-width: 1024px) {
  .rockdiv {
    display: none;
  }
}




















.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  background: #c6c6c6;
  position: absolute;
  bottom: 3vh;  /* This positions the button at the bottom of the page, change the number to adjust its position */
  left: 50%;  /* This positions the button in the middle of the page */
  transform: translateX(-50%);  /* This adjusts the button's position to be truly in the center */
  z-index: 1; /* This ensures the button appears on top of the video */
}

.button:hover {
  background-color: #a0a0a0;
}


