
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url("./images/IISC-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family:'Poppins', sans-serif ;
    position: relative;
    transition: background-image 1s ease-in-out;
}
.overlay{
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgb(0, 0, 0,0.4);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.countdown-container{
    display: flex;
}
.big-text{
    font-size: 4rem;
}
.title{
    margin: 10px;
    text-align: center;
    color: #fff;
    width: 100%;
    letter-spacing: 2px;
    font-size: 3rem;
    line-height: 5.5rem;
}
.title span{
display: block;
font-size: 6rem;
letter-spacing: 2rem;
}
.wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 60vh;
}
.countdown-container >div{
    margin: 0 2rem;
    text-align: center;
    border: 2px solid #fff;
    padding: 0px 20px;
    border-radius: 12px;
    box-shadow: 0px 2px 10px rgb(0, 0, 0,0.5);
    box-sizing: border-box;
    color: #fff;
    min-width: 150px;
}
.quote {
    position: relative;
    width: 80%; 
    margin-top: 20px;
}
.quote-line{
    color: #fff;
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    
}
.author {
    position: absolute;
    bottom: 1; 
    right: 5px; 
    font-size: 25px;
    opacity: 0.8;
}
.change-theme-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color:transparent;
    color: #fff;
    border: 2px 2px;
    border-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}
.menu-container {
    position: fixed;
    top: 10px;
    right: 30px;
    z-index: 10;
}
.dots {
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}
.dropdown-content a {
    color: black;
    width:9.3rem;
    padding: 12px 16px;
    text-decoration: none;
    display: list-item;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: #ddd;
    border-radius: 5px;
}

@media(max-width:992px){
    .countdown-container>div{
        margin: 0 1rem;
    }
    .quote-line{
        font-size: 20px;
        text-align: center;
    }
}
@media(max-width:767px){
    .countdown-container{
        flex-wrap: wrap;
    }
    .countdown-container>div{
        margin: 1rem auto;
        max-width: 150px;
    }
    .title{
        font-size: 1.5rem;
        line-height: 3.5rem;
        margin: 10px 0px;
    }
    .title span{
        font-size: 2rem;
        letter-spacing: 1rem;
    }
    .quote-line{
        font-size: 20px;
        text-align: center;
    }
    .author{
        font-size: 15px;
    }
    .change-theme-btn{
        font-size: 15px;
    }
}


