body{
	margin: 50px 200px 80px 200px;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
}

#clockContainerIn, #clockContainerOut, #finalClockContainer {
    position: relative;
    margin: auto;
    margin-bottom: 80px;
    height: 30vw;
    width: 30vw;
    background: url(clock.png) no-repeat;
    background-size: 100%;
}
  
.hourIn,
.minuteIn,
.hourOut,
.minuteOut{
    position: absolute;
    background: black;
    border-radius: 10px;
    transform-origin: bottom;
}
  
.hourIn, .hourOut {
    width: 1.8%;
    height: 25%;
    top: 25%;
    left: 48.85%;
}
  
.minuteIn, .minuteOut {
    width: 1.6%;
    height: 30%;
    top: 19%;
    left: 48.9%;
}

.info{
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: center;
}

h1{
	font-size: 34px;
	font-weight: bold;
	margin: 3px;
}
h2{
	margin: 5px;
	font-size: 24px;
	font-weight: normal;
}

h3{
	text-align: center;
	margin: 10px;
	font-size: 24px;
	font-weight: 600;
}

h4{
	font-size: 50px;
	margin: 10px;
}

h5{
	font-size: 20px;
	font-weight: bold;
}

p{
	font-size: 18px;
	font-weight: normal;
	text-align: center;
	margin: 50px auto;
	width: fit-content;
	text-align: left;
}

a{
	color: black;
}

#statement{
	font-size: 20px;
	margin-bottom: 80px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

#revealStatement{
	font-size: 20px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

#credit{
	text-align: left;
}


#clockChanged, #showComparison{
	display: none;
}


button{
	font-family: 'Montserrat', sans-serif;
	background-color: black;
	color: white;
	text-align: center;
	height: 50px;
	border-radius: 30px;
	font-size: 18px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
	width: fit-content;
}


#question{
	font-size: 16px;
}

#reveal{
	display: none;
}

#theArt{
	display: none;
}

#theArt1, #theArt2, #theArt3, #theArt4{
	display: none;
	animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

#theArt2{
	margin-bottom: 0px;
}

#theArt3{
	margin-top: 10px;
}

button#theArt4{
	padding-top: 10px;
}


@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#final{
	display: none;
}

#final button{
	margin-top: 40px;
}

#finalClockContainer .clock{
	width: 100%;
	height: 100%;
	object-fit: scale-down;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 100;
}


.sector {
    position: absolute;
    top: 21%;
    left: 19.85%;
    width: 60%;
    height: 60%;
    border-radius: 100%;
    /*background-color: rgba(10, 0, 0, 1);*/
    background-color: grey;
    box-sizing: border-box;
    border: 0.13rem solid white;
}

/*这个clip属性用来绘制半圆，在clip的rect范围内的内容显示出来，使用clip属性，元素必须是absolute的 */
/*-webkit-animation: an1 2s infinite linear; */
.sx1 {
    position: absolute;
    top: 21.3%;
    left: 19.85%;
    width: 60%;
    height: 60%;
    border-radius: 100%;
    background-color: white;
}

.sx2 {
    position: absolute;
    top: 20.7%;
    left: 19.85%;
    width: 60%;
    height: 60%;
    border-radius: 100%;
    background-color: white;
}

#artwork{
	padding: 50px;
	border: 3px solid black;
}


@media (min-width: 769px) and (max-width: 1200px) {

	body{
		margin: 50px 100px 80px 100px;
	}

	h1{
		font-size: 30px;
	}

	h2{
		font-size: 20px;
	}

	h3{
		font-size: 18px;
	}

	h4{
		font-size: 40px;
	}

	p{
		font-size: 16px;
	}

	#statement, #revealStatement{
		font-size: 18px;
	}

	#clockContainerIn{
		margin-bottom: 50px;
	}


	#clockContainerIn, #clockContainerOut, #finalClockContainer {
	    height: 40vw;
	    width: 40vw;
	}

}



@media only screen and (max-width: 768px) {
	body{
		margin: 50px 30px 50px 30px;
	}

	h1{
		font-size: 22px;
	}

	h2{
		font-size: 15px;
	}

	h3{
		font-size: 16px;
	}

	h4{
		font-size: 28px;
	}

	h5{
		font-size: 16px;
		margin: 50px auto;
	}

	p{
		font-size: 16px;
		margin: 40px auto;
	}

	#question{
		font-size: 12px;
	}


	#statement{
		font-size: 14px;
		margin-bottom: 60px;
	}

	#revealStatement{
		font-size: 14px;
		margin-bottom: 40px;
	}

	#clockContainerIn, #clockContainerOut{
		margin-bottom: 10px;
	}

	#clockContainerIn, #clockContainerOut, #finalClockContainer {
	    height: 60vw;
	    width: 60vw;
	}

	.info{
		margin-top: 40px;
		margin-bottom: 40px;
	}

	button{
		height: 40px;
		font-size: 14px;
	}

	#theArt p{
		margin: 40px 0px;
		text-align: left;
	}

	p#theArt2{
		margin-bottom: 0px;
	}

	p#theArt3{
		margin-top: 10px;
	}

	#reveal p, #final p{
		margin: 40px 0px;
		text-align: left;
	}

	#finalClockContainer {
		margin: 10px auto 40px auto;
	}

	#artwork{
		padding: 30px;
	}

	#finalStatement{
		font-size: 14px;
		margin: 20px auto 0px auto;
		width: fit-content;
	}

	p#finalStatement{
		margin-bottom: 20px;
	}

	#final button{
		margin-top: 30px;
	}

}

