html {
    height: 100%;
}
body {
    background: url("../../assets/img/dogtag_bg.png") no-repeat center center / cover;
    margin: 0;
    font-family: sans-serif;
    color: #fff;
    background-color: #000;
    height: 1100px;
}
ul {
    list-style: none;
    padding-left: 0;
}

.content {
    position: absolute;
    display: contents;
    width: 100%;
    height: 100%;
}
.content::after{
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 1100px;
    top: 0;
    left: 0;
    background-color: white;
    opacity: 0.5;
}
.header_menu {
    padding: 5px 15px;
    z-index: 10;
    position: relative;
    border-bottom: solid 2px black;
    display: flex;
}
.logo {
    width: 200px;
}

.footer {
    border-top: 1px solid #090909;
    margin-top: 80px;
    width: 100%;
    padding: 10px 0;
    color: #000;
    text-align: center;
    font-size: 0.9rem;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin: 30px 0;
}
.flyer {
    z-index: 10;
    background-color: #fff;
    color: #000;
    text-align: center;
    margin-right: 50px;
}
.flyer-img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
.overlay {
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1.2em 3em;
    border-radius: 20px;
}
.event-details {
    font-size: 1.1em;
    line-height: 1.8;
}
.p-title {
    font-size: 1.6em;
    font-weight: bold;
    line-height: 1;
}
.p-time {
    font-size: 0.8em;
    line-height: 1;
}
.p-ticket-label {
    font-weight: bold;
    margin: 0;
}
.p-ticket {
    margin: 0;
    font-size: 0.9em;
    a:link { color: #ff9460; }
    a:visited { color: #ff9460; }
    a:hover { color: #ff9460; }
    a:active { color: #ff9460; }

}

@media (max-width: 600px) {
    body {
        background: none;
        background-color: #fff;
        height: 1350px;
    }
    .content::after{
        height: 1350px;
        background-color: initial;
        opacity: 1;
    }
    .section {
        display: block;
        z-index: 10;
    }
    .flyer {
        margin: 20px;
    }
    .overlay {
        margin: 20px;
    }
}
