:root {
    --currentBGColor : #000000;
}


body { 
    /* transition-duration: 500ms ;  */
    /* transition: 1000ms; */
    font-family: 'Rubik', sans-serif;
    padding-right:0px;
    padding-left:0px;
    padding-top:0px;
    padding-bottom:300px; 
    margin-left: 10px;
    margin-right: 10px; 
    overflow: hidden;
    zoom: 100%;
         
}

a:link {
    color:#B22222;
    text-decoration: none;
}

a:visited {
    color:#B22222;
    text-decoration: none;
}

a:hover {
    color:coral;
    text-decoration: none;
}

img {
    z-index: 50;
}

.background0 {
    background-color: whitesmoke;
    background-image: url('assets/granite.png');
}


.background1 {
    background-image: url('assets/checkmark.png');
    background-color: #2E7D32;
}

.background2 {
    background-image: url('assets/circle x.png');
    /*background-color: #b71c1c; */
    background-color: #B22222;
}


#myDropdown, #selectButton, #aboutButton {
    font-size: 24px;
    font-family: 'Rubik', sans-serif;
}


.roundedButton {
    /* border-radius: 20px; */
    border: none;
    background-color:#D3D3D3 ;
    border-color:#D3D3D3 ;
    padding: 10px;

}

.roundedButton:hover {
    background-color: green;
    transition: 500ms;
}

.dropDownBox {
    /* border-radius: 20px; */
    border: none;
    background-color:#D3D3D3 ;
    border-color:#D3D3D3 ;
    padding: 10px;
}

.dropDownBox:hover {
    background-color: coral;
    transition: 500ms;
}

.judgeBG {
    background-color: var(--currentBGColor)
}


#textareaContainer{
    display: none;
    position:absolute;
    left: 50px;
    right: 50px;
    bottom: 80px;
    top:200px;
         
}

#adjudicateTextarea {
    display:block;
    width:100%;
    height:100%;
    border: none;
    outline: none;
    resize: none;
    animation-name: animateTextarea;
    animation-duration: 500ms;
    transition: 500ms;
    
    font-family: 'Rubik', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
}

@keyframes animateTextarea {
    from {transform: scale(.1);}
    to {transform: scale(1);}
}



.banner_wrapper {
    position: fixed;

    margin-left: auto;
    margin-right: auto;
    bottom: 0px;
    background-color: #f4c430;
    justify-content: center;
   
    text-align:center;
    display: none;
  

}


.banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    
    background-color: #FFD700;
    background-color: black;
    color: #000000;
    padding-left: 20px;
   
    font-size: 20px;
    transition: 500ms;
    
    z-index: 1000; /* Set a high z-index to make sure the banner is above other elements */
}

.space {margin: 0;
	padding: 0;}



#aboutText {
    position:absolute;
    font-size: 20px;
    bottom:0;
    display: block;
       
}

#howManyContainer {
    display: none;

    }

#dictShadow {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem; 
    color: rgba(0, 0, 0, 0.2); 
    white-space: nowrap;
    z-index: -1; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

#topMessage {
    text-align: center;
    margin-top: 10%;
    font-size: 48px;
    
}

#thumbZoom {
    animation-name: zoom-thumb;
    animation-duration: 500ms;
    display: none;
}

@keyframes zoom-thumb {
    from { transform: scale(0); }
    to { transform: scale(1); }
}


#numberZoom {
    text-align: center;
    font-size: 80px;
    animation-name: numZoom;
    /* animation-delay: 500ms; */
    animation-duration: 750ms;
    display: none;
}

@keyframes numZoom {
    from {transform: scale(1) rotate(0);}
    to {transform: scale(1) rotate(0);}
}

#judgeMessageContainer {
    display:none;
}

#judgeMessageLine1 {
    margin-top: 50px;
    text-align: center;
    font-size: 32px;
}

#judgeMessageLine2  {
    text-align: center;
    font-size: 32px;
}

#judgeMessageLine3 {
    text-align: center;
    font-size: 32px;
}

#jawwjLogo {
    position:absolute;
    right:45px;
    top:40px;
}

#bigLogo {
    position: absolute;
    left: -20px;
    top: 50%;
    overflow-x: hidden;
    overflow-y: hidden; 
    transform: scale(3,3) rotate(30deg);
    z-index:-10;
    opacity: .1;
}
    
.overlay-black{
    position: absolute;
    top: 0; left: 0;
    height: 100vh;
    width: 100vw;
    z-index:30;
    background-color:black;
    animation-name:fadeIn;
    animation-duration:0.5s;
    
    animation-fill-mode: forwards;
    display:none ;
}


@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

#validOrNot {
    display: none;
    font-size: 48px;
    font-weight:600;
    width: 100%;
    position: absolute;
    text-align: center;

    top: 30%;
}

#infoTextarea {
    width: 700px;
    height: 300px;
    padding: 5px;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    resize: none; 
    box-sizing: border-box; 
}
