/*{outline: 1px red solid;} */

body,html
{
    margin: 0;
    padding: 0;
    background-color: #fff;
    
    font-family: Arial, Helvetica, sans-serif;
}

.logo img {
  height: 100px;
}

.header {
  padding: 2rem;
  display: flex;
  align-items: center;
}

.header h2 {
  margin: 0rem 0 0 1rem;
}

.zegar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

.razem-start
{
    z-index: 10;
    font-size: 1rem;
    background-color: orange;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    border: 0;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    color: #fff;
    box-shadow: 0px 0px 10px 0px orange
}
.zespol 
{
    text-align: left;
    margin-left: 3%;
    float: left;
    width: 30%;
    height: 400px;
    padding-top: 2%;   
}
.clear
{
    clear: both;
}



.liczbapytan
{
    color: white;
    font-size: 2rem;
    font-weight: 600;
    padding: 1%;
    text-align: center;
    width: 20%;
}
.liczbapytan.liczbapytan1{background: black}
.liczbapytan.liczbapytan2{background: green}
.liczbapytan.liczbapytan3{background: purple}
.liczbapytan.liczbapytan4{background: blue}
.liczbapytan.liczbapytan5{background: brown}


.zespol .wyswietlacz
{
    width: 50%;
    color: #fff;
    text-align: center;
    font-size: 800%;
    font-weight: 600;
    
}

.zespol .wyswietlacz.wyswietlacz-1{color: black;}
.zespol .wyswietlacz.wyswietlacz-2{color: green;}
.zespol .wyswietlacz.wyswietlacz-3{color: purple;}
.zespol .wyswietlacz.wyswietlacz-4{color: blue;}
.zespol .wyswietlacz.wyswietlacz-5{color: brown;}








.zespol #koniec , #koniec2, #koniec3, #koniec4, #koniec5
{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width:80%;
    padding: 0.25% 0 ;
    background: red;
    font-size: 200%;
    color: #fff;
    margin-top: 4%;
    position: relative;
    top: -56%;
    opacity: 0;   
}

#timeNewClock {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 5.5rem;
  font-family: monospace;
  font-style: italic;
  border: 0px solid gray;
  padding: 1rem 2rem;
  background: #000;
  color: red;
}


/*ZEGAR */
.clock {
    border-radius: 100%;
    background: #FFF;
    font-family: "Montserrat";
    border: 5px solid #000;
    box-shadow: inset 2px 3px 8px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 1rem;
    right: 1rem;
    transform: scale(1);
  }
  
  .wrap {
    overflow: hidden;
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 100%;
  }
  
  .minute,
  .hour {
    position: absolute;
    height: 100px;
    width: 9px;
    margin: auto;
    top: -27%;
    left: 0;
    bottom: 0;
    right: 0;
    background: black;
    transform-origin: bottom center;
    transform: rotate(0deg);
    z-index: 1;
  }
  
  .minute {
    position: absolute;
    height: 130px;
    width: 6px;
    top: -38%;
    left: 0;
    transform: rotate(90deg);
  }
  
  .second {
    position: absolute;
    height: 90px;
    width: 3px;
    margin: auto;
    top: -26%;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    background: #FF4B3E;
    transform-origin: bottom center;
    transform: rotate(180deg);
    z-index: 1;
  }
  
  .dot {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: white;
    border: 2px solid #1b1b1b;
    border-radius: 100px;
    margin: auto;
    z-index: 1;
  }


.numbers {
    overflow: hidden;
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 100%;
    font-size: 24px;
    opacity: 0.35;
    font-weight: 700;
}

.number-1 {
  position: absolute;
  top: 30px;
  left: 250px;
}

.number-2 {
  position: absolute;
  top: 80px;
  left: 300px;
}

.number-3 {
  position: absolute;
  top: 165px;
  left: 320px;
}

.number-4 {
  position: absolute;
  bottom: 80px;
  left: 300px;
}

.number-5 {
  position: absolute;
  bottom: 30px;
  left: 250px;
}

.number-6 {
  position: absolute;
  bottom: 10px;
  left: 165px;
}

.number-7 {
  position: absolute;
  bottom: 30px;
  right: 250px;
}

.number-8 {
  position: absolute;
  bottom: 80px;
  right: 300px;
}

.number-9 {
  position: absolute;
  top: 165px;
  right: 320px;
}

.number-10 {
  position: absolute;
  top: 80px;
  right: 300px;
}

.number-11 {
  position: absolute;
  top: 30px;
  right: 250px;
}

.number-12 {
  position: absolute;
  top: 10px;
  left: 163px;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}