@import url(./vars/_font.css);
@import url(./vars/_color.css);

* {
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.page_container {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}

body {
    margin: 0 10% 0 10%; 
}

a {
    text-decoration: none;
    color: black;
}

header {
    min-height: 50px;
    margin-bottom: 10px; 
}

footer { 
    margin-top: 30px;
    min-height: 50px;
}

footer .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
}

footer .container span {
    font-size: var(--common-size);
    font-weight: var(--massive);
    color: var(--font-color);
}

ul li {
    flex: 0 0 31.4%;
    padding: 15px 10px;
    list-style-type: none;
    text-align: center;
    background-color: white;
    transition: background-color 0.3s ease-in-out;
}

ul li:hover {
    background-color: #E5E5E5;
}

ul li a {
    color: var(--font-color);
    font-size: var(--massive);
}

ul li:hover a {
    color: black;
}

hr {
    height: 2px;
    border: none;
    border-top: 1px solid black;
    padding: 0;
    width: 100%;
}

.ticket_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
    box-shadow: 0 0 35px 1px var(--shadow-color);
    border-radius: 35px;
    margin-top: 10px;
}

.ticket:hover {
    box-shadow: 0px 0px 5px 2px var(--shadow-color);
}

.ticket img {
    max-width: 100%;
    height: auto;
    filter: blur(3px);
}

.ticket span {
    text-align: center;
    font-size: var(--big);
    color: var(--font-color);
}