.fullscreen-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    }  
    
.hidden-cursor {  
    cursor: none;
    }

.no-border {
      border: none!important;
  }

#display_area {
    display: flex;
    position:relative;
    width:600px;
    height: 600px;     
    margin: 100px auto; /*first number set the margin from the top of the viewport/window; auto set the box to be at the center horizontally*/
    border: 0px solid grey;
      }
#display_area_1{
display: flex;
position:absolute;
width:600px;
height: 600px;     
margin: 80px auto; /*first number set the margin from the top of the viewport/window; auto set the box to be at the center horizontally*/
border: 2px solid rgb(209, 13, 13);
  }
      
#cursor_position {
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    border-radius: 50%; /*The percentage is how rounded the corner of the shape/div should be*/
    background-color: black; /* Example color */
    }

#image_container {
    position: absolute; /* Overlaps the display_area */
    top: 0;
    left: 0;
    width: 100%; /* Fills the entire width of the display area */
    height: 100%; /* Fills the entire height of the display area */
    overflow: hidden; /* Hides any part of the image that overflows */
    background-color: transparent;
  }
  
  #image_container img {
    width: 100%; /* Makes the image fill the container width */
    height: 100%; /* Makes the image fill the container height */
    object-fit: cover; /* Scales the image to cover the container while maintaining aspect ratio */
  }

img {object-fit: contain;} 

#jspsych-audio-button-response-button{
object-position: center bottom;  
border: none;
background:none; }

#jspsych-image-button-response-stimulus{
    object-fit: none;
    object-position: center bottom;}

#likert li {
  display: inline
}
  
input[type='radio'] 
{ 
   transform: scale(1.5); 
}