img {
    width: 100%;
    /* object-fit: cover; */
}

body {
    height: 150vh;
    position: relative;
}

.buttons {
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button {
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background-color: #454544;
    color: white;
    border: 2px solid rgb(21, 21, 21);
}

@media (max-width: 1800px) {
    .buttons {
        top: 450px;
    }
  }
@media (max-width: 1700px) {
    .buttons {
        top: 350px;
    }
  }
@media (max-width: 1480px) {
    .buttons {
        top: 320px;
    } 
  }
@media (max-width: 1350px) {
    .buttons {
        top: 290px;
    }
  }
@media (max-width: 1280px) {
    .buttons {
        top: 260px;
    }
  }
@media (max-width: 1024px) {
    .buttons {
        top: 220px;
    }
  }
@media (max-width: 992px) {
    .buttons {
        top: 150px;
    }
  }
@media (max-width: 767px) {
    .buttons {
        top: 19px;
        flex-direction: row;
        /* left: 150px; */
        left: 320px;
    }
    button {
        padding: 1px 3px;
        width: 60px;
        margin-top: 2px;
       
    }
    .rsvp {
        left: -271px;
        position: absolute;
        flex-direction: column;
        display: flex
    ;
    }
  }

  @media (max-width: 431px) {
    .rsvp {
        left: -260px;
    }
    .days {
        position: relative;
        right: -50px;  
    }
  }
  @media (max-width: 400px) {
    .rsvp {
        left: -260px;
    }
    .days {
        position: relative;
        right: -6px;  
    }
  }