@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');


*{
    margin: 0;
    padding: 0;
}

header{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 50px;
    text-align: center;
    color: white;
}

.openSymbol{
    font-size: 30px;
    float: left;
}


.menuContent{
    left: 0;
    top: 0;
    background: rgb(7, 8, 80);
    height: 100%;
    width: 0px;
    transition: .4s;
    z-index: 1;
    overflow-x: hidden;
    position: fixed;
    padding-top: 60px;
    border-radius: 10px;
}

.menuContent a{
    font-size: 25px;
    color: white;
    display: block;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    transition: .3s;
    

}

 .menuContent .closeBtn{
    margin-left: 50px;
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 25px;
    cursor: pointer;

}


body{
    background: rgb(3, 5, 88);
}


.eventSection{
    text-align: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border: 1px solid rgb(3, 5, 88);
    border-radius: 10px;
}

.boxEvent{
    max-width: 1000px;
    margin: 0 auto;
    background: rgb(16, 17, 100);
    padding: 50px;
    border-radius: 10px;
    margin-top: 10px;




}

.timerCounter{
    display: flex;
    flex-direction: row;
    justify-content: center ;
    gap: 10px;
    font-size: 1rem;
}

.timeBox{
    background: whitesmoke;
    color: black;
    max-width: 100px;
    min-width: 92px;
    height: 100px;
    font-size: 25px;
    border-radius: 10px;
}
.timeBox label{
   
}

.circleImg{
    max-width: 100px;
    height: 100px;
    margin: 0 auto;
    background: rgb(255, 255, 255);
    border-radius: 100%;
    background: url('image1.PNG');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px whitesmoke solid;
    margin-top: 10px;
    margin-bottom: 10px;
    animation-name: circleHighlight;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    position: relative;
    transition: 1s;
}
.circleImg:hover{
    border: 5px whitesmoke solid;
}
@-webkit-keyframes circleHighlight{
    0%{transform: scale(.95);}
    50%{transform: scale(1);}
    100%{transform: scale(.95); }
}

footer p{
    text-align: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    bottom: 0;
    position: absolute;
    width: 100%;

}


