body {
    overflow-x: hidden;
    max-width: 100vw;
    background-color: #FFF0D2;
    display: flex;
    flex-direction: column;
}

body, header, nav, ul {
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header ul {
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    text-decoration: none;
    margin: 0;
    background-color: #FFF0D2;
}

header a {
    text-decoration: none;
    color: #19090A;
    font-family: "Intel One Mono", monospace;
    font-weight: bold;
    font-size: 2.25rem;
    text-align: center;
}

.banner {
    align-content: center;
    justify-content: center;
    text-align: center;
    font-family: "Intel One Mono", monospace;
    font-weight: bold;
    color: #19090A;
    margin-top: 50px;
    height: calc(85vh);
}

.banner p {
    margin: 0;
    font-size: 2rem;
    margin-top: -40px;
    margin-left: 10vw;
}

.background {
    z-index: -1;
    align-self: center;
    position: absolute;
    top: calc(50% + 30px);
    left: 50%;
    height: 92.5%;
    transform: translate(-50%, -50%);
}

h1 {
    font-size: 8rem;
    margin-bottom: 0;
    margin-left: -60px;
}

h1 span {
    color: #FFF0D2;
}



h2 {
    font-family: "Intel One Mono", monospace;
    font-weight: bold;
    font-size: 6rem;
    color: #19090A;
    text-align: center;
    margin-top: 180px;
    text-shadow: 4px 4px 0 #4A2514;
}

h3 {
    text-align: center;
    font-family: "Lilex", serif;
    font-size: 4rem;
}




h3::before {
    position: relative;
    content: "";
    display: block;
    width: 80%;
    height: 5px;
    top: 110px;
    margin: 0 auto 20px auto;
}

.groupes h3::before {
    background-color: #BC89FF;
}

.concerts h3::before {
    background-color: #D92626;
}



.list {
    display: flex;
    justify-content: center;
    gap: 20px;
}



.list > div {
    width: 520px;
    height: 250px;
    border-radius: 15px;
}

.groupes .list > div {
    background-color: #FAEDFF;
}

.concerts .list > div {
    background-color: #FCEFEF;
}


.groupes .list > div {
    box-shadow: 12px 12px 0 #BC89FF;
}
.concerts .list > div {
    box-shadow: 12px 12px 0 #D92626;
}



.lines-1 {
    position: absolute;
    bottom: -6px;
}
.lines-2 {
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(180deg);
}

.groupes .info > div {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 95%;
    align-items: center;
    justify-content: center;
}

.groupes .info > div > p {
    border-radius: 5px;
    background-color: #BC89FF;
    color: #19090A;
    text-align: center;
    margin: 0;
    flex: 1;
    font-family: "Lilita One", serif;
    font-size: 1.25rem;
}



.list-header {
    margin: 0;
    height: 70px;
    align-content: center;
    border-radius: 15px 15px 0 0;
    width: 100%;
    background-color: #19090A;
    font-family: "Lilex", serif;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.list-header p {
    margin: 0;
    padding-left: 18px;
    padding-right: 18px;
}

.list-header p:last-child:not(:first-child) {
    font-family: 'Lilex', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: white;
}


.list-content {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
}

.list-content p {
    margin: 0;
    font-family: "Lilita One", serif;
    font-size: 2.25rem;
}

.info {
    flex:1;
    padding-left: 17.5%;
}

.info p {
    margin-top: 30px;
}

.info p::before {
    position: absolute;
    content: "";
    display: block;
    width: 200px;
    left: 20.5%;
    top: 42.5%;
    height: 5px;
    margin-bottom: 20px;
}
.groupes .info p::before {
    background-color: #BC89FF;
}
.concerts .info p::before {
    background-color: #D92626;
}

.concerts .info p:last-child {
    font-family: 'Lilex', serif;
    font-size: 1.25rem;
    text-align: center;
    margin-top: 10px;
    margin-right: 25px;
}

.cover {
    width: 170px;
    height: 170px;
    background-color:white;
}

.cover img{
    border-radius: 50px 0 50px 25px;
}

.points {
    position: absolute;
    top: 8px;
    left: 8px;
}

.groupes {
    color: #BC89FF;
}
.concerts {
    color: #D92626;
}

@media (width < 800px) {
    ul {
        flex-direction: column;
    }
    ul > li > a {
        font-size: 1.5rem;
    }
}

footer {
    display: flex;
    flex-direction: column;
    height: 200px;
    margin-top: 150px;
    border-top: 20px solid #4A2514;
    background-color: #19090A;
    color: #FFF0D2;
    font-family: 'Lilex', serif;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: bold;
    align-items: center;
}

footer p {
    margin-bottom: 0;
    margin-left: 10px;
    align-self: flex-start;
}

footer ul {
    margin-top: 80px;
    display: flex;
    justify-content: space-arround;
    gap: 20px;
    list-style: none;
    text-decoration:    underline;
}

footer a {
    color: #FFF0D2;
}