* {
    box-sizing: border-box;
}

.bg {
    display: flex;
    background-image: url("img/background.png");
    background-position: 50% 50%;
    background-size: cover;
    overflow-x: hidden;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.heading {
    margin-top: 20px;
}

.sylb {
    height: 40vh;
}

.valara {
    height: 29vh;
    float: right;
}

.shark {
    height: 35vh;
}

.wau {
    height: 27vh;
    float: right;
}

h1 {
    display: none;
}

img {
    width: auto;
    max-width: 100vw;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);

}

.hidden {
    max-height: 0;
    background-color: rgba(34, 34, 34, 0.78);
    width: 100%;
    box-shadow: 5px 5px 13px 5px rgba(0, 0, 0, 0.76) inset;
    overflow: hidden;
    transition: all 0.8s;
}

.show {
    max-height: 1000px;
    padding: 10px;
}

.center {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    max-width: 480px;
}

.hidden .center {
    max-width: 100%;
}

.info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.info-button {
    border-radius: 3px;
    /* border: 1px solid #ffffff; */
    background-color: #3e3e3e;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    padding: 5px;
    margin-bottom: 10px;
    box-shadow: 5px 5px 13px 5px rgba(0, 0, 0, 0.76);
    width: 100%;
    text-decoration: none;
    font-size: 1em;
    align-items: center;
}

.info-button-primary {
    margin-top: 10px;
    background-color: #354853 !important;
}

.info-button:hover {
    background-color: #354853;
}

.info-button-primary:hover {
    background-color: #3e3e3e !important;
}

.info a img {
    position: relative;
    height: 1em;
    width: auto;
    padding-right: 10px;
}

.info a p {
    margin: 0;
    font-family: "Metal", sans-serif;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.column {
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 100%;
}

@font-face {
    font-family: 'Metal';
    src: url('fonts/Seagram.ttf');
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 1000px) {
    .center {
        max-width: max-content;
    }
}

p {
    color: #ffffff;
    font-size: 2em;
    font-family: "Metal", sans-serif;
}

.tickets {
    color: #ffffff;
    font-size: 1.2em;
    font-family: "Metal", sans-serif;
    width: 100%;
    text-align: center;
}

@keyframes pulse {
    0% {
        animation-timing-function: ease-out;
        transform: scale(1);
        transform-origin: center center;
    }

    10% {
        animation-timing-function: ease-in;
        transform: scale(0.91);
    }

    17% {
        animation-timing-function: ease-out;
        transform: scale(0.98);
    }

    33% {
        animation-timing-function: ease-in;
        transform: scale(0.87);
    }

    45% {
        animation-timing-function: ease-out;
        transform: scale(1);
    }
}

#tickets {
    animation: pulse 2s ease 1s 2 normal forwards;
}