:root{
    /* --mainTextColor: white;
    --secTextColor: black; */
    --signatureColor: #0078FF;
    --facebook: #0165E1;
    --signatureLight: #CDE1F8;
    --darkColor: #141867;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* scroll-behavior: smooth; */
}

body{
    /* background:linear-gradient(#dd1e46,#d700bc); */
    /* background-color: #f39ab5; */
    background-color: var(--signatureColor);
    color: white;
    font-family:Arial,sans-serif;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    margin:0;
    text-align:center;
}

#countdown{
    /* font-size:1.5rem; */
    font-weight: bolder;
    /* margin-top:20px; */
}
#countdown2{
    /* font-size:1.5rem; */
    font-weight: bolder;
    /* margin-top:20px; */
}

.cards{
    margin: 1rem auto;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1em;
}

.card{
    width: 30%;
    padding: 1rem 0.2rem;
    border: 0.1rem solid transparent;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    box-shadow: 0px 0px 0.5rem rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

.card:hover{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    border-color: var(--signatureLight);
    background-color:var(--signatureLight);
    color: var(--darkColor);
}

.container{
    margin: 20px auto;
    padding: 1rem;
    width: 80%;
}
ul{
    margin: 8px auto;
    width: 50%;
    list-style: none;
    display: flex;
    justify-content: space-around;

    /* gap: 8px; */
}
ul a {
    text-decoration: none;
    color: black;
}
.circle {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: x-large;
    width: 2em;
    height: 2em;
    border: 4px solid var(--signatureLight);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.circle:hover{
    border-color: white;
    /* background-color: rgb(66, 60, 60); */
    background-color: var(--darkColor);
    color: rgb(236, 229, 229);
}

.tv{
    aspect-ratio: 16/9;
    margin: 8px auto;
    padding: 0.3rem ;
    border: 1.5rem solid;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}