body{
	background-color: rgb(51, 50, 51);
	margin: 0;
}

a, a:visited{
	color: black;
	text-decoration: none;
}

.hourglassBackground {
	position: relative;
	background-color: rgb(71, 60, 60);
	height: 130px;
	width: 130px;
	border-radius: 50%;
	margin: 30px auto;
  }
  
  .hourglassContainer {
	position: absolute;
	top: 30px;
	left: 40px;
	width: 50px;
	height: 70px;
	-webkit-animation: hourglassRotate 2s ease-in 0s infinite;
	animation: hourglassRotate 2s ease-in 0s infinite;
	transform-style: preserve-3d;
	perspective: 1000px;
  }
  
  .hourglassContainer div,
  .hourglassContainer div:before,
  .hourglassContainer div:after {
	transform-style: preserve-3d;
  }
  
  @-webkit-keyframes hourglassRotate {
	0% {
	  transform: rotateX(0deg);
	}
  
	50% {
	  transform: rotateX(180deg);
	}
  
	100% {
	  transform: rotateX(180deg);
	}
  }
  
  @keyframes hourglassRotate {
	0% {
	  transform: rotateX(0deg);
	}
  
	50% {
	  transform: rotateX(180deg);
	}
  
	100% {
	  transform: rotateX(180deg);
	}
  }
  
  .hourglassCapTop {
	top: 0;
  }
  
  .hourglassCapTop:before {
	top: -25px;
  }
  
  .hourglassCapTop:after {
	top: -20px;
  }
  
  .hourglassCapBottom {
	bottom: 0;
  }
  
  .hourglassCapBottom:before {
	bottom: -25px;
  }
  
  .hourglassCapBottom:after {
	bottom: -20px;
  }
  
  .hourglassGlassTop {
	transform: rotateX(90deg);
	position: absolute;
	top: -16px;
	left: 3px;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	background-color: #999999;
  }
  
  .hourglassGlass {
	perspective: 100px;
	position: absolute;
	top: 32px;
	left: 20px;
	width: 10px;
	height: 6px;
	background-color: #999999;
	opacity: 0.5;
  }
  
  .hourglassGlass:before,
  .hourglassGlass:after {
	content: '';
	display: block;
	position: absolute;
	background-color: #999999;
	left: -17px;
	width: 44px;
	height: 28px;
  }
  
  .hourglassGlass:before {
	top: -27px;
	border-radius: 0 0 25px 25px;
  }
  
  .hourglassGlass:after {
	bottom: -27px;
	border-radius: 25px 25px 0 0;
  }
  
  .hourglassCurves:before,
  .hourglassCurves:after {
	content: '';
	display: block;
	position: absolute;
	top: 32px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #333;
	animation: hideCurves 2s ease-in 0s infinite;
  }
  
  .hourglassCurves:before {
	left: 15px;
  }
  
  .hourglassCurves:after {
	left: 29px;
  }
  
  @-webkit-keyframes hideCurves {
	0% {
	  opacity: 1;
	}
  
	25% {
	  opacity: 0;
	}
  
	30% {
	  opacity: 0;
	}
  
	40% {
	  opacity: 1;
	}
  
	100% {
	  opacity: 1;
	}
  }
  
  @keyframes hideCurves {
	0% {
	  opacity: 1;
	}
  
	25% {
	  opacity: 0;
	}
  
	30% {
	  opacity: 0;
	}
  
	40% {
	  opacity: 1;
	}
  
	100% {
	  opacity: 1;
	}
  }
  
  .hourglassSandStream:before {
	content: '';
	display: block;
	position: absolute;
	left: 24px;
	width: 3px;
	background-color: white;
	-webkit-animation: sandStream1 2s ease-in 0s infinite;
	animation: sandStream1 2s ease-in 0s infinite;
  }
  
  .hourglassSandStream:after {
	content: '';
	display: block;
	position: absolute;
	top: 36px;
	left: 19px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	animation: sandStream2 2s ease-in 0s infinite;
  }
  
  @-webkit-keyframes sandStream1 {
	0% {
	  height: 0;
	  top: 35px;
	}
  
	50% {
	  height: 0;
	  top: 45px;
	}
  
	60% {
	  height: 35px;
	  top: 8px;
	}
  
	85% {
	  height: 35px;
	  top: 8px;
	}
  
	100% {
	  height: 0;
	  top: 8px;
	}
  }
  
  @keyframes sandStream1 {
	0% {
	  height: 0;
	  top: 35px;
	}
  
	50% {
	  height: 0;
	  top: 45px;
	}
  
	60% {
	  height: 35px;
	  top: 8px;
	}
  
	85% {
	  height: 35px;
	  top: 8px;
	}
  
	100% {
	  height: 0;
	  top: 8px;
	}
  }
  
  @-webkit-keyframes sandStream2 {
	0% {
	  opacity: 0;
	}
  
	50% {
	  opacity: 0;
	}
  
	51% {
	  opacity: 1;
	}
  
	90% {
	  opacity: 1;
	}
  
	91% {
	  opacity: 0;
	}
  
	100% {
	  opacity: 0;
	}
  }
  
  @keyframes sandStream2 {
	0% {
	  opacity: 0;
	}
  
	50% {
	  opacity: 0;
	}
  
	51% {
	  opacity: 1;
	}
  
	90% {
	  opacity: 1;
	}
  
	91% {
	  opacity: 0;
	}
  
	100% {
	  opacity: 0;
	}
  }
  
  .hourglassSand:before,
  .hourglassSand:after {
	content: '';
	display: block;
	position: absolute;
	left: 6px;
	background-color: white;
	perspective: 500px;
  }
  
  .hourglassSand:before {
	top: 8px;
	width: 39px;
	border-radius: 3px 3px 30px 30px;
	animation: sandFillup 2s ease-in 0s infinite;
  }
  
  .hourglassSand:after {
	border-radius: 30px 30px 3px 3px;
	animation: sandDeplete 2s ease-in 0s infinite;
  }
  
  @-webkit-keyframes sandFillup {
	0% {
	  opacity: 0;
	  height: 0;
	}
  
	60% {
	  opacity: 1;
	  height: 0;
	}
  
	100% {
	  opacity: 1;
	  height: 17px;
	}
  }
  
  @keyframes sandFillup {
	0% {
	  opacity: 0;
	  height: 0;
	}
  
	60% {
	  opacity: 1;
	  height: 0;
	}
  
	100% {
	  opacity: 1;
	  height: 17px;
	}
  }
  
  @-webkit-keyframes sandDeplete {
	0% {
	  opacity: 0;
	  top: 45px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	1% {
	  opacity: 1;
	  top: 45px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	24% {
	  opacity: 1;
	  top: 45px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	25% {
	  opacity: 1;
	  top: 41px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	50% {
	  opacity: 1;
	  top: 41px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	90% {
	  opacity: 1;
	  top: 41px;
	  height: 0;
	  width: 10px;
	  left: 20px;
	}
  }
  
  @keyframes sandDeplete {
	0% {
	  opacity: 0;
	  top: 45px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	1% {
	  opacity: 1;
	  top: 45px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	24% {
	  opacity: 1;
	  top: 45px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	25% {
	  opacity: 1;
	  top: 41px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	50% {
	  opacity: 1;
	  top: 41px;
	  height: 17px;
	  width: 38px;
	  left: 6px;
	}
  
	90% {
	  opacity: 1;
	  top: 41px;
	  height: 0;
	  width: 10px;
	  left: 20px;
	}
  }

  .infoSection {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    margin: 40px auto;
    max-width: 800px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: pulse 2s infinite;
}

.infoContainer {
    text-align: center;
    color: #333;
}

.infoContainer h2 {
    font-size: 2em;
    margin: 20px 0 10px 0;
    color: #d9534f;
    animation: bounceIn 1s;
}

.infoContainer p {
    font-size: 1.2em;
    line-height: 1.6;
}

.infoContainer a {
    color: #d9534f;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.infoContainer a:hover {
    color: #c9302c;
    transform: scale(1.05);
}

.infoContainer i {
    color: #d9534f;
    margin-bottom: 15px;
    animation: shake 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 77, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(217, 83, 77, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 77, 0);
    }
}

@keyframes bounceIn {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    60% {
        transform: translateY(10px);
        opacity: 1;
    }
    80% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

@media (max-width: 600px) {
    .infoSection {
        padding: 40px 10px;
    }

    .infoContainer h2 {
        font-size: 1.5em;
    }

    .infoContainer p {
        font-size: 1em;
    }

    .infoContainer i {
        font-size: 2em;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
}

.nav-left {
    display: flex;
    gap: 10px; 
}

.navbar button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.navbar button:hover {
    background-color: #575757;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.dropbtn i {
    margin-left: 5px;
}

.dropdown:hover .dropbtn {
    background-color: #575757;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 1;
    margin-top: 5px;
}

.dropdown-content a {
    color: black;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-left {
        flex-direction: column;
        width: 100%;
    }

    .navbar button {
        width: 100%;
        text-align: left;
    }

    .dropdown {
        width: 100%;
    }

    .dropbtn {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 0;
    }

    .dropdown-content a {
        padding: 10px 20px;
    }
}