body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: center;
	background-image: url('https://i.ibb.co/WW4VZgdc/image1.png'); /* your image name */
            background-size: cover;      /* full screen fit */
            background-position: center; /* center the image */
            background-repeat: repeat;
}

.container {
	width:100%;
	height:auto;
}

.title {
	text-align: center;
	font-style : fraktur bold;
	color : #C7B7FF;
    font-size:150px;
    font-weight:700;
    letter-spacing:4px;
    text-shadow:0 0 20px cyan;
}

.year {
	text-align: center;
    font-size:100px;
    color:red;
    text-shadow:0 0 20px red;
}

.subtitle {
	text-align: center;
    font-size:90px;
    margin-top:100px;
    text-shadow:0 0 15px white;
}

.logo{
	margin: 0;
    justify-content: center;
    align-items: center;
    width:500px;
	height: 400px;
	margin-bottom:10px;
	position: center;
}

.clglogo{
    width:270px;
	height:270px;
	float: left;
	margin-left:50px;
	margin-top:0;
}

.countdown-title{
	text-align: center;
    margin-top:40px;
    font-size:70px;
    color:#00ffff;
    text-shadow:0 0 10px cyan;
}

.timer{
	position: center;
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:20px;
}

.box{
    background:#156;
    padding:15px 20px;
    border-radius:8px;
    box-shadow:0 0 15px cyan;
}

.box h2{
    font-size:50px;
}

.box span{
    font-size:50px;
    opacity:0.7;
}

.date {
	text-align: center;
	font-size:80px;
    color: red;
    font-weight: bold;
    margin: 15px 0;
}

.info {
	text-align: center;
	font-size:76px;
    margin: 5px 0;
}

.register {
	text-align: center;
	font-size:60px;
    display: inline-block;
    margin: 15px 15px;
    color: #ff66ff;
    text-decoration: underline;
    word-break: break-all;
}

.events {
	text-align: center;
	font-size:100px;
    margin-top: 15px;
    color: #AEEFFF;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
	
}

button {
    padding: 25px 25px;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid #5ee7ff;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #5ee7ff;
    color: black;
}

button.non:hover {
    background: red;
    color: white;
}
/* HERO SECTION */
.hero{
    height:40vh;
    display:flex;
    justify-content:center;
    align-items:center;
}
	

.hero-card{
    background:black;
    padding:30px;
    border-radius:25px;
    width:100%;
    max-width:430px;
    text-align:center;
    box-shadow:0 0 40px rgba(0,255,255,0.3);
}

.hero-card img{
    width:100%;
    border-radius:15px;
}

.hero-title{
    font-size:50px;
    letter-spacing:3px;
    margin-top:20px;
	color:blue;
}

.hero-sub{
    font-size:40px;
    letter-spacing:8px;
    margin-top:10px;
    color:#FFD700;
}
	
	
.arrow{
	text-align: center;
	font-style : fraktur bold;
	color : red;
    font-size:70px;
    font-weight:700;
    letter-spacing:4px;
    text-shadow:0 0 20px cyan;
    transform: rotate(-360deg);
    animation: bounce 1.5s infinite;
  }
}