@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --c--bg: #EEEEEE;
    --c-fnt: #666;
    --c-DB: #DBDBDB;
}
*{
    box-sizing: border-box;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
body {
    font-family: "Manrope", sans-serif;
    color: var(--c-fnt);
    background-color: var(--c--bg);
    place-content: center;
    margin: 0 auto;
}
a{
    text-decoration: none;
}
.mb-3{
    margin-bottom: 25px;
}

.evnt_date,
.evnt_day,
.evnt_place{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;   
}
.evnt_day,
.evnt_place {
    padding: 8px 16px;
}

.evntBoard {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
}

.evnt_date {
    padding: 10px 20px;
    width: 100%;
    gap: 10px;
    transition: all .5s;
}
.evnt_date:hover{
    background-color: var(--c-DB);
}

.evnt_day {
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.evnt_day > .evnt_day_nmbr {
    font-size: 39px;
}

.evnt_day > .evnt_day_mnth {
    font-size: 18px;
}

.evnt_place {
    text-align: center;
    text-transform: uppercase;
}

.evnt_place>.evnt_place_addrs {
    font-size: 22px;
    font-weight: 800;
}

.evnt_place>.evnt_place_cntry {
    font-weight: 400;
}

.evnt_link {
    display: flex;
    justify-content: center;
    align-items: center;
}
button{
    cursor: pointer;
    border-radius: 4px;
    transition: all .5s;
}

button.evnt_button {
    width: 70%;
    padding: 16px 8px;
    border: none;
    background-color: var(--c--bg);
}
button.evnt_button, 
button.evnt_button a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--c-fnt);
    font-size: 14px;       
}
.evnt_button > a i{
    margin-left: 8px;
}
#verMasBtn{
    background-color: var(--c-DB);
}
button:hover{
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

@media screen and (width > 768px) {
    .evnt_date{
        flex-direction: row;
        justify-content: space-between;
        padding: 40px 20px;
    }
    .evnt_day,
    .evnt_link {
        width: 33.333%;
    }
    .evnt_place{
        width: 50%;
    }
}