h2 {
    font-size: clamp(0px, 5vw, 60px);
    margin: 0;
    line-height: clamp(0px, 3.8vw, 45.7px);
    font-kerning: none;
    letter-spacing: -0.098em;
    font-family: archivo_black;
    white-space: nowrap;
}

.bot {
    padding: calc(max(20px, 10vw));
    padding-top: min(10vw, 100px);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.concert_container {
    border: solid 1px;
    padding: 5px 5vw 5px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.concert_date {
    font-size: clamp(0px, 4vw, 48px);
    font-family: archivo_black;
    font-kerning: none;
    letter-spacing: -0.098em;
}

.concert_name {
    font-size: clamp(0px, 2vw, 24px);
    font-weight: 300;
}

.concert_ticket {
    text-decoration: none;
    color: #d9d9d9;
    border: solid 1px;
    padding: 7px 15px 4px 15px;
    margin: 10px;
    font-size: clamp(0px, 2.0vw, 24px);
    font-weight: 300;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    margin-top: 120px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media only screen and (max-width : 480px) {
    h2 {
        font-size: clamp(0px, 8vw, 96px);
    }

    .concert_container {
        border: solid 1px;
        padding: 5px 2vw 5px 2vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .concert_date {
        font-size: clamp(0px, 6vw, 72px);
        font-family: archivo_black;
        font-kerning: none;
        letter-spacing: -0.098em;
        white-space: nowrap;

    }

    .concert_name {
        font-size: clamp(0px, 4vw, 48px);
        font-weight: 300;
        text-align: center;
    }

    .concert_ticket {
        text-decoration: none;
        color: #d9d9d9;
        border: solid 1px;
        padding: 7px 15px 4px 15px;
        margin: 0px;
        font-size: clamp(0px, 4vw, 48px);
        font-weight: 300;
    }
}