*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.plus-jakarta-sans-uniquifier {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
  }
.modal{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: whitesmoke;

}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 500px;
    gap: 20px;
    background-color: white;
    border-radius: 30px;
    font-size: 25px;
}
.content p{
    padding: 20px;
    text-align: center;
}
#acceptBtn{
    width: 150px;
    height: 6vh;
    background-color: red;
    border: none;
    border-radius: 5px;

}
#acceptBtn a,
#rejectBtn a{
text-decoration: none;
color: black;
font-size: 20px;
}
#rejectBtn{
    width: 150px;
    height: 6vh;
    border: 1px solid red;
    border-radius: 5px;

}