Agneda

* {
margin: 0;
padding: 0;
line-height: 2;
}

body {
font: 1em sans-serif;
}

.bar {
display: flex;
width: 100%;
padding: 1em 0;
background-color: #012169;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
cursor: pointer;
}

.bar:hover {
background-color: #F1F0EF;
}

.active {
background-color: #F1F0EF;
}

.bar__time {
width: 9em;
padding: 0 1em;
font-size: .875em;
color: #C0C0C0;
font-weight: 700;
}

.bar__title {
font-weight: 700;
color:#FFFFFF;
}

.head {
display: flex;
width: 100%;
padding: 1em 0;
background-color: #012169;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
}

.head_1 {
width: 9em;
padding: 0 1,5em;
font-size: .875em;
color: #FFFFFF;
font-weight: 700;
text-decoration: underline;
}
.head_2 {
padding: 0 2em;
font-size: .875em;
color: #FFFFFF;
font-weight: 700;
text-decoration: underline;
}
.break {
display: flex;
width: 100%;
padding: 1em 0;
background-color: #FFFFFF;
color: #EA6012;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
}

.break__time {
width: 9em;
padding: 0 1em;
font-size: .875em;
color: #EA6012;
font-weight: 700;
}
.break__title {
font-weight: 700;
color: #EA6012;
}
.break__title_2 {
font-weight: 700;
color: #012169;
}

.title { font-size: .875em;
font-weight: 700;
color: #EA6012;
background-color: #FFFFFF;
text-indent: 15px;
margin-top:2%;
margin-bottom: 2%;
}

.title_p { margin-bottom: 0.5em;
}

Keep track of the schedule so as not to miss out on quizzes

In each quiz, we will determine<a href="https://event.vvenues.com/asstraviva/-7094514" the 3 best participants, who will receive prizes.

Opening date
Quiz name

December 28, 2021
QUIZ №1 “Let’s sum up the results of 2021!”

December 31, 2021
QUIZ №2 “AsstrA and cinema!”

05 January, 2022
QUIZ №3 “AsstrA in the world of events!”

January 12, 2022
QUIZ №4 “Weekly strategic quiz!”

var coll = document.getElementsByClassName(‘bar’);
var i;

for (i = 0; i < coll.length; i++) {
coll[i].addEventListener('click', function() {
this.classList.toggle('active');
var content = this.nextElementSibling;
if (content.style.display === 'block') {
content.style.display = 'none';
} else {
content.style.display = 'block';
}
});
}