
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  body {
    user-select: none;
    font-family: 'Silkscreen', cursive;
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;

    background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%),radial-gradient(100% 60% at 30% 40%, rgb(5, 230, 136) 0%, rgb(6, 65, 95) 69.79%, rgb(160, 0, 300)80%); 



            
        }

        .navbar {
            position: fixed;
            /* top: 530; */
            right: 0;
            bottom: 0;

            height: 40vh;
            /* background-color: #303030; */
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: center;
            padding: 10px 0;
            z-index: 1; 
            display: flex;
            flex-direction: column-reverse;


          }

          .nav-button {
            background-color: #386f72;
            color: white;
            font-family: 'Silkscreen', cursive;
            font-size: 20px;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;

          }
          
          .nav-button:hover {
            background-color: #490073;
          }
          
          .nav-button:active {
            background-color: #1fbc63;
          }    
    @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(50);
        }
        100% {
          transform: scale(100);
        }
      }

@keyframes rotate {
    0% {
      transform: rotate(-360deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(360deg); }
    50% { transform: rotate(0eg); }
    75% { transform: rotate(-360deg); }
    100% { transform: rotate(0deg); }
  }
.progress-container {
    position: relative;
    width: 250;
    height: 250;
    display: none;
}

.progress {
    width: 100%;
    font-family: fantasy;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(#00b356 0% 0%, #540051 0% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
#randomizeToggle {
  background-color: #474448;
  font-size:22px;
}

#randomizeToggle.active {
  background-color: #4CAF50;
  font-size:22px;
}
.progress-value {
    position: absolute;
    font-size: 60px;
    font-weight: bold;
}
    .introText {
        color: #ece004;

        padding: 1px;
    
        max-height: 100%;
        text-align: center;
        justify-content: center;
        font-size: 37px;
        cursor: pointer;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 20px auto;
        
        }

        .introText:active {
            color:white;

        }
        .hiddenTable {
            visibility: hidden;
        }
        .visibleTable {
            visibility: visible;
        }
        .header:active {
            color:#386f72;
        }

        .hiddenPauseButton {
            display: none;
        }
        .hiddenButton {
            display: none;

        }
        .hiddenButtonTimer {
            visibility: hidden;

        }
        .hiddenMainButtons {
          display: none;

        }

        .highlight {
            background-color: rgb(66, 74, 114);
            font-weight: bold;
          }

          .highlightButton {
                       background-color: rgb(66, 74, 114);
            font-weight: bold;
          }
        .hiddenExtraButton {
            visibility:hidden;



        }

        .extrasElements{
            visibility: hidden;
            font-size: 20px;
            position: absolute;
            top: 300px;
            right: 0px;
            flex-direction: column;
            padding: 4;
            border-style: dashed;
            border-width: 5;
            border-radius: 10%;
            color: #10ed7b;
            width: 12%;
            overflow: auto;
            z-index: 1000;


        }

        .playerCountStyle{
            color: #10ed7b;
            font-size: 5vh; 
            padding: 10vh;
 


        }
.nextTurnText {
    color: #10ed7b;
            font-size: 40px; 

            background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.53) 0%, transparent 100%);
            border-style: double;
            border-width: 10px;
            border-radius: 10px;
            display: none;
            
            
}
.showNextTurnText{
    display: block;
}
.nameFieldsContainerStyle {
    color: #10ed7b;
    font-size: 5vh;
    
     
}


#numberDropdown {
    width: 30%; 
    font-size: 2vw; 
    border: 1px solid #ccc;
    border-radius: 15px;
    text-align: center;
    color: #a204ec;
    margin: 1vw auto;
}


#numberDropdown option {
    font-size: 2vw; 
}
        .tempoAttributes {
            color: #10ed7b;
            font-size: 30px; 
            height: 30px;

            

        }
        .submitClass {
            font-size: 4vh;
            padding: 5vh;

        }

table {
    position: fixed; 
    bottom: 0; 
    left: 0;
    z-index: 1; 
    width: 16.5%; 
    height:80%;
}
          tr, td, th {
            padding: 12px;
            text-align: left;
            border: 1px solid #ddd;
          }
          th {
            background-color: #6fb36f;
            color: white;
          }
        .numberOfPlayers {
            display: none;
        }  
        .keyAttributes {
            color: #10ed7b;
            font-size: 20px; 
            height: 15px;
        }
        .hiddenSetupElements{
            display:none;
        }

        button {
            
    background-color: #386f72;
    font-family: 'Silkscreen', cursive;
    color: rgb(255, 255, 255);
    font-size: 25px;
    padding: 10px 5px;
    border: gold;
    cursor: pointer;
    margin: auto;
    box-sizing: border-box;
    border-radius: 10px;
    transition: transform 0.2s;

}

/*  */
button:disabled, button[disabled]{
  background-color: #e5dada;
  color: #777676;
  pointer-events: none;
}


.transportButton {
    background-color: #448262;
    bottom: 25;
  color: rgb(255, 255, 255);
  font-size: 30px;
  border: gold;
  cursor: pointer;
  margin: auto;

  background-image: radial-gradient(23% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 66% at 50% 50%, rgba(231, 0, 247, 0.55) 0%, rgba(6, 65, 95, 0) 69.79%, rgba(152, 2, 2, 0) 100%);
  z-index: 1000;
  position: relative;
  /* display: inline-block; */
  
  
}


    

button.transportButton:hover {
    background-color: #4b9c72;
}


button:hover {
  background-image: radial-gradient(23% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 66% at 50% 50%, rgba(231, 0, 247, 0.55) 0%, rgba(6, 65, 95, 0) 69.79%, rgba(152, 2, 2, 0) 100%); 
  transform: translateY(-2px)
}


button:active {
  background-color: #1fbc63
}

button.transportButton:active {
  background-color: #1fbc63;
  box-shadow: 0 0 10px 1px rgb(254, 255, 244);

}

.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 20px;
    place-items: center;
    justify-content: center;
}

.header {
    color: #a204ec;
    background-color: #333;
    top: 0;
    left: 0;
    position: fixed;
    padding: 1px;

    max-height: 100%;
    text-align: left;
    justify-content: center;
    font-size: 50.5px;
    
    

    cursor: pointer;
    transition: transform 0s;
    z-index: 1;


}





.main-content {
    padding: 20px;
    justify-content: center;

}

.timerText {
    color:rgb(241, 189, 237); 
    font-size: 20vw; 
    font-family: 'Libre Barcode 128 Text', cursive; 

    /* transform: translate(1%, -1%); */
    /* visibility: hidden; */
    width: 100%;
    /* display: block; */
    padding: 1vw
    
    



    

}

.headline {
    color: #a204ec;
    font-size: 77px;
    border-radius: 600%;
    box-sizing: border-box;
    cursor: pointer;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
    z-index: 100; 



}


.backgroundStyle {
    color: #a204ec;
    background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(100% 50% at 50% 50%, rgb(5, 230, 136) 0%, rgb(6, 65, 95) 69.79%, rgb(253, 0, 300) 100%); 
    border-radius: 100%;
    box-sizing: border-box;
    justify-content: center;
    margin: auto;
    width: 550px;
    height: 550px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    text-align: center;
    z-index: 1;

}


.backgroundStyle:hover {

    background-image: radial-gradient(100% 25% at 35% 50%, rgba(6, 65, 95, 0) 69.79%, rgba(160, 0, 300) 100%);

}

.backgroundStyle:active {

        box-shadow: 0 0 10px 10px rgba(242, 255, 144, 0.666);

}


.input_fields {
    display: none;
    
}
.designCircleSpin{
    animation-name: rotate;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    
}
.designCircle {
    border-radius: 90%;
    box-sizing: border-box;
    justify-content: center;
    margin: auto;
    width: 100px;
    height: 100px;
    position: fixed;
    right: 10px;
    top: 80px;
    display: none;
    padding-top: 50px;
    font-size: 13px;
    background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(100% 50% at 50% 50%, rgb(5, 230, 136) 0%, rgb(6, 65, 95) 69.79%, rgb(253, 0, 300) 100%); 
    color: blue;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 1px 1px rgba(243, 243, 243, 0.454);




}

.designCircle:active{

        border-radius: 90%;
        box-sizing: border-box;
        justify-content: center;

        margin: auto;
        width: 100;
        height: 100;
        position: fixed;

        display: none;
        padding-top: 50px;
        font-size: 13px;

        background-image: radial-gradient(50% 50% at 50% 50%, rgba(187, 253, 7, 0.738) 69.79%, rgb(143, 91, 255) 100%);
        color: blue;
        text-align: center;
        animation: 1s ease-out 0s 1;
        cursor: pointer;
    
    }
.designCircleBlink {
    animation-name: pulse;
    animation-duration: 9s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    
      }

.timerTextShake {

    animation: shake 20s infinite;
    animation-delay: 4s;
}    

.nextTurnText.desktop-hide {
    visibility: hidden;
}


@media screen and (max-width: 768px){
    /* .container {
        padding: 10px;
        height: 50vh;
    
    } */
    /* .transportButtonsContainer {
        height: 50vh;
        display: flex;
      }
     */
     #randomizeToggle {
        background-color: #474448;
        font-size:3vwf;
      }
    .progress-container {
        position: relative;
        width: 175;
        height: 175;
        display: none;
    }

    .progress-value{
        font-size: 30px;
    }
    .buttonTimerInformation{
        /* position: fixed; */
        top: 50;
    }
    .progress {
        width: 100%;
        font-family: fantasy;

        border-radius: 50%;
        background: radial-gradient(#00b356 0% 0%, #540051 0% 100%);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hideNavElementsMobile{
        display: none;
    }
    .timeSelection{
        position: fixed;
        z-index: 1;
        left: 0;
        right: 0;
        top: 300;
        justify-content: center;
        text-align: center;
        
    }
    .hideMainElements{
        display:none;
    }
    .extrasElements{
        width: 100%;
        font-size: 40px;
        padding: 10px;
        position: center;
        justify-content: space-between;
        display: flex;
        flex-direction: column-reverse;

    }
.navbar{
    top: 30;
    left: 0;
    height: 2.5em;
    padding: 10px;
    flex-direction: column;
    /* position: relative; */


}

    .nav-button {
        font-size: 10px;

      }
    .nextTurnText {
        color: #10ed7b;
        font-size: 20px; 

        background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.23) 0%, transparent 100%);
        /* visibility: visible; */
        margin-top: 100px;
        position: flex;
        /* z-index: 50; */
        position: relative;
        top: 50;
        

        
        
}
    table{
        display: none;
    }

    .playerCountStyle{
        font-size: 10vw;
        padding: 10vw;

    }

    
    #numberDropdown{
        font-size: 6vw;
        width: 100%;

    }
    .header {
        padding: 10px;
        font-size: 20px;

    }
    .main-content {
        padding: 5px;
        /* display:none; */
        height: 100vh;
        z-index: 1000;
        
    }

.timerText {
    color:rgb(241, 189, 237); 
    font-size: 120px; 
    font-family: 'Libre Barcode 128 Text', cursive; 
    height: 100%;
    width: 100%;
    height: auto;
    /* display: flex; */
    position: relative;
    top: 150;



    

}

    table {
        width: 100%; 
        height: auto; 
        position: absolute; 
    }

.designCircleBackgroundEndTurnMobile {
    background: repeating-conic-gradient(black, purple 0.0007%);
}


    button {
  font-family: 'Silkscreen', cursive;
  color: rgb(255, 255, 255);
  font-size: 30px;
  border: gold;
  cursor: pointer;
  margin: auto;
  z-index: 100;
  width: 100%;
  /* position: relative; */
}
.designCircle:active {
    height: 50em;
    width: 50em;
    right:0;
    left: 0;
    bottom: 50;

}
.designCircle {
    height: 50em;
    width: 50em;
    right:0;
    left: 0;
    bottom: 50;
    visibility: hidden;

}

.showDesignCircle{
    visibility: visible;
}
.transportButton {
    background-color: #448262;
  color: rgb(255, 255, 255);
  font-size: 15px;
  border: gold;
  cursor: pointer;
  margin: auto;
  padding: 1vh;
  background-image: radial-gradient(50% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 66% at 50% 50%, rgba(231, 0, 247, 0.55) 0%, rgba(6, 65, 95, 0) 69.79%, rgba(152, 2, 2, 0) 100%);
  bottom: 0;
  position: flex;
  bottom: -150;
}
.headlineMobile {
    font-size: 15px;
    box-sizing: border-box;
    cursor: pointer;
    margin: auto;
}
.tempoAttributesMobile {
    font-size: 25px; 
    height: 25px;
        }

.keyAttributesMobile {
    font-size: 12px; 
    height: 10px;
        }

.backgroundStyle {
    top: 50%;
    right: -50%;
    transform: translate(50%, -50%);
        }
.introText {
    font-size: 18vw;
    top: 300;
    

}
.nameFieldsContainerStyle {
    color: #10ed7b;
    font-size: 30px;
    padding-top: 40px;
    

}
}

@media screen and (max-height: 500px) and (orientation: landscape) {

.timerText {
    font-size: 30vw;
    top:0;
}
    
.header{
    display:none;
}
    
.navbar{
    display:none;
    top:0;
}
.main-content{
    padding:0;
height: 500vh;

}
.nextTurnText{

display: none;
}
.designCircle{
    top:10;
    height: 2em;
    width: 4em;
}
.transportButton{
    font-size: 1em;
    bottom: 25vh;}
    
    table{
        display: none;
    }
.backgroundStyle{
    display:none;
}
}


 @media screen and (max-width: 280px) {
    .container {
        padding: 10px;

    }
    
    .header {
        padding: 10px;
        font-size: 10px;

    }
    .main-content {
        padding: 10px;
    }

    .introText {
        font-size: 40px;
    
    }



}

