@import url("https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css");


html * {
    text-align: center;
    font-family: 'Courier New', Courier, monospace !important;
}

.fade-in {
    animation: fadeIn 3s;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.centered {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pos-inner {
    position: relative;
}

.pos-outer {
    position: absolute;
}

.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

/*Disclaimer title*/
.disclaimer-title {
    margin-top: 30px;
}
/*Disclaimer text*/
.disclaimer-box {
    background-color: #e93425;
    width: 100%; 
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
    border-radius: 30px;
    padding: 12px; 
}

/*Emphasized words in disclaimer such as CONSENT and START*/
.consent-start {
    background-color: #35393f;
    width: 100%; 
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
    border-radius: 30px; 
    padding: 10px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: static; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: -100;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 2% auto; /* 15% from the top and centered */
    margin-bottom: 2% auto;
    padding: 10px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #ff0000;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .emphasizedwords {
    background-color: #45bf8a;
    text-overflow: ellipsis; 
    border-radius: 30px; 
    padding: 4px;
}