.hidden {
    display: none;
}
.clickable {
    cursor: pointer;
}
/* Add your custom CSS styles here */
body {
    overflow-y: hidden;
}
.vh-100 {
    height: 100vh;
}
.h-75 {
    height: 75%;
}
.h-25 {
    height: 25%;
}
.d-flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.justify-content-center {
    justify-content: center;
}
.align-items-center {
    align-items: center;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.rounded {
    border-radius: 0.25rem;
}