body{
    margin: 0;
    text-align: center;
    background-image: url(5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100%;
    background-color: #082032;
}
.center {
    display: flex;
    justify-content: center;
}
h1 {
    font-family: 'Exo', sans-serif;
    font-size: 50px;
    background-color: rgba(22,22,22,0.5);
    margin-top: 0;
    padding: 30px;
    color: #fff;
}
.inputBlock {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
.block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 0 0;
}
.inputField{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 15px;
}
label {
    font-family: 'Exo', sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin: 10px;
    background-color: rgba(22,22,22,0.5);
    padding: 3px 15px;
    color: #fff;
}
input{
    width: 100px;
    font-family: 'Exo', sans-serif;
    font-size: 30px;
    font-weight: 400;
}
p {
    font-family: 'Exo', sans-serif;
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    padding: 15px 35px;
    border: 2px solid #fff;
    border-radius: 5px;
    width: 200px;
    background-color: rgba(22,22,22,0.5);
    align-items: center;
}
hr {
    width: 10%;
    margin: 40px;
    color: #fff;
    border: 1px solid #fff;
}
#startBtn{
    font-family: 'Exo', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    padding: 10px 35px;
    border: 2px solid #fff;
    border-radius: 5px;
    background-color: rgba(22,22,22,0.5);
    align-items: center;
    margin: 40px 0px 0px 0px;
}
#startBtn:hover {
    background-color: rgba(22,22,22,0.8);
}
.fb {
    margin: 10px;
}
.link{
    padding: 10px;
}

.clock {
  border-radius: 100%;
  background: #ffffff;
  font-family: "Montserrat";
  border: 2px solid white;
  box-shadow: inset 2px 3px 8px 0 rgba(0, 0, 0, 0.1);
}

.wrap {
  overflow: hidden;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}

.minute,
.hour {
  position: absolute;
  height: 18px;
  width: 4px;
  margin: auto;
  top: -20%;
  left: 0;
  bottom: 0;
  right: 0;
  background: #1f2a33;
  transform-origin: bottom center;
  transform: rotate(0deg);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.minute {
  position: absolute;
  height: 30px;
  width: 2px;
  top: -30%;
  left: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  transform: rotate(90deg);
}

.second {
  position: absolute;
  height: 30px;
  width: 2px;
  margin: auto;
  top: -30%;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 2px;
  background: orange;
  transform-origin: bottom center;
  transform: rotate(180deg);
  z-index: 1;
}

.dot {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background: white;
  border: 2px solid #1b1b1b;
  border-radius: 100px;
  margin: auto;
  z-index: 1;
}

@media all and (max-width: 300px) {
    .inputBlock {
        flex-direction: column;
    }
}
