@import url('https://fonts.googleapis.com/css2?family=Cause:wght@100..900&family=Chewy&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Metal+Mania&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    h1,h2{
        font-family: "Metal Mania", system-ui;
            font-weight: 400;
            font-style: normal;
            background: linear-gradient(135deg, #ffb347 0%, #ff6a00 25%, #ff4500 50%, #ffb347 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                color: transparent;
    }

    p{
        font-family: "Metal Mania", system-ui;
        font-weight: 400;
        font-style: normal;
        color: #ffb347;
        line-height: 150%;
    }
}

*{
    box-sizing: border-box;
}

body{
    margin: 0;
    margin-left: 1rem;
    margin-right: 1rem;
    background: linear-gradient(135deg, #000000 0%, #0d1117 25%, #1a1a2e 50%, #16213e 75%, #0f0c29 100%);
}

/* forside styling */

.introContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

h1{
    font-size: 4rem;
}

/* billet sektion */

img{
    width: 1000px;
    height: auto;
}

.billetContainer{
    display: flex;
    justify-content: space-evenly;
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.billetContainer img{
    width: 700px;
    height: 400px;
    /* object-fit: contain; */
    align-self: top;
    justify-self: top;
}

.billetContainer p{
    font-size: 2rem;
}

.billetInfo{
    max-width: 700px;
    display: flex;
    flex-direction: column;
}

.billetInfo button{
    padding: 1rem;
    background: orangered;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.8),
            0 0 25px rgba(255, 90, 0, 0.5),
            0 0 45px rgba(255, 60, 0, 0.3);
}

.billetInfo a{
    text-decoration: none;
    color: white;
    font-size: 2rem;
}

/* praktisk info sektion */

.genrelInfoContainer{
    display: flex;
    align-items: center;
}

.genrelInfoContainer p{
    max-width: 70ch;
    font-size: 2rem;
}

.genrelInfoContainer h2{
    font-size: 3rem;
}

.moon{
    position: absolute;
    width: 300px;
    z-index: -1;
    top: 30px;
    right: 50px;
}

.clown-video {
    display: block;
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    background: transparent;
}

/*  */
/* media querries */
/*  */

@media screen and (max-width: 500px) {
    .introContainer h1{
        font-size: 2rem;
    }

body{
    margin: 0.5rem;
}

.moon{
    width: 150px;
    top: 5px;
    right: 5px;
}

    /* billet sektion */

    .billetContainer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .billetContainer img{
        max-width: 400px ;
        max-height: 250px;
    }

    .billetInfo p{
        font-size: 1.5rem;
        align-self: center;
    }

    .billetInfo button{
        max-width: 390px;
        max-height: 50px;
    }

    .billetInfo a{
        font-size: 1.3rem;
        justify-self: center;
        align-self: center;
    }

    .genrelInfoContainer{
        display: flex;
        flex-direction: column;
    }

    .genrelInfoContainer p{
        font-size: 1.5rem;
    }

    .genrelInfoContainer h2{
        font-size: 2.5rem;
    }

}