::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #252525;
    border-left: 1px solid #4c4d4c;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(13, 14, 13, 0.9);
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #252525;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #4c4d4c;
    background-color: rgba(13, 14, 13, 0.97);
    padding: 10px 0;
}

.bandeau {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 10px;
}

.header-logo img {
    height: 30px;
}

.header-logo a:hover img {
    filter: brightness(0.3);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

section {
    background-color: #252525;
    max-width: 1220px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
    min-height: 50vh;
    height: auto;
}

.img-event {
    display: flex;
    width: 500px;
    height: auto;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  
.img-event img {
    max-width: 100%;
    height: auto;
    border: 1px solid #4c4d4c;
}

.info-event {
    margin-top: 10px;
}

.Concert-heading {
    max-width: 500px;
    margin: auto;
    margin-bottom: 5px;
    text-align: start;
    font-size: 14px;
    color: #ffffff;
}

.Event-heading {
    max-width: 500px;
    margin: auto;
    margin-bottom: 20px;
    text-align: start;
    font-size: 22px;
    color: #ffffff;
}

.Event-description {
    max-width: 500px;
    margin: auto;
    margin-top: 10px;
    text-align: start;
    line-height: 1.2;
    font-size: 14px;
    color: #ffffff;
}

.Tickets-button {
    max-width: 500px;
    margin: auto;
    margin-top: 20px;
    text-align: right;
}

button {
    padding: 10px 20px;
    font-size: 20px;
    border: 1px solid #4c4d4c;
    box-sizing: border-box;
    background-color: #1b1b1b;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #343634;
}

@media (max-width: 600px) {
    .info-event {
        padding: 10px;
        margin-top: 0;
    }
    .Tickets-button {
        padding-right: 10px;
        margin-bottom: 45px;
    }
}

footer {
    position: relative;
    font-size: 10px;
    height: auto;
    background-color: #252525;
    color: #fff;
    width: 100%;
    padding: 5px;
    border-top: 1px solid #4c4d4c;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    color: #fff;
}

.footer-teoxane {
    margin: 0;
    padding: 0;
    align-items: flex-start;
}

.footer-teoxane p {
    margin-left: 1%;
    width: 100%;
    margin-top: 0;
}

.social-icons a svg {
    width: 25px;
    height: 25px;
    transition: background-color 0.3s;
}

.social-icons a:hover svg {
    filter: brightness(0.3);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.social-icons a {
    margin: 0 8px;
}

@media only screen and (max-width: 600px) {
    footer {
        position: fixed;
        bottom: 0px;
        width: 100%;
        align-items: flex-start;
        padding: 5px 0;
    }
    
    .social-icons {
        justify-content: center;
        width: 100%;
    }

    .footer-teoxane {
        display: none;
    }
}