
@import url('https://fonts.googleapis.com/css2?family=Happy+Monkey&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

  body {
    font-family: 'nunito', sans-serif;
  }

 h1 {
    color: #ffffff;
    margin: 0;
}

.image-container {
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide any overflow */
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
}

.title h1 {
    font-size: 5em;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.6), 
                 0 0 30px rgba(255, 255, 255, 0.4), 
                 0 0 40px rgba(255, 255, 255, 0.2);
}

.white-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.btn-custom {
    background-color: #0037b3 ; /*blue*/
    color:#ffffff;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px; /* Add horizontal margin to create space between buttons */ 
}

.btn-custom:hover {
    background-color: #ff82e2; /*light pink*/
    color: #000000
}
.btn-custom1 {
    background-color: #0037b3;
    color: #ffffff;
}
.btn-custom1:hover {
    background-color: #70baff;
}

.btn-custom2 {
    background-color: #fe0879;
    color: #ffffff;
}
.btn-custom2:hover {
    background-color: #ff82e2;
}
.modal-title {
    text-align: center;
    width: 100%;
}

.modal-footer {
    display: flex;
    justify-content: center;
}