body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@font-face {
  font-family: "bangers";
  src: url(../fonts/Bangers.ttf);
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: scale(0.8) translateX(100px) translateY(-50%);
  }
  to {
    opacity: 0.8;
    transform: scale(1) translateX(0) translateY(-50%);
  }
}
.logo {
  font-family: "Bangers", cursive;

  font-size: 6vw;
}
.logo-centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: scale(0.8) translateX(-100px) translateY(-50%);
  }
  to {
    opacity: 0.8;
    transform: scale(1) translateX(0) translateY(-50%);
  }
}
input.form-control,
button.btn {
  font-family: Arial, sans-serif;
  font-size: 1rem;
}
input.form-control {
  width: 100%;
  box-sizing: border-box;
}

.global {
  position: relative;
  padding: 2rem;
  border-radius: 0.5rem;
}

.global::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3rem;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: url("../img/static/chanteuse.png") no-repeat center/contain;
  opacity: 0.8;
  z-index: -1;
  pointer-events: none;
  animation: fadeInLeft 0.7s ease-out forwards;
}

.global::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3rem;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: url("../img/static/guitariste.png") no-repeat center/contain;
  opacity: 0.8;
  z-index: -1;
  pointer-events: none;
  animation: fadeInRight 0.7s ease-out forwards;
}

.navbar-brand img {
  width: 2rem;
  height: auto;
}

.alert {
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
}

.alert-success {
  background-color: #4caf50;
  color: white;
}

.alert-error {
  background-color: #f44336;
  color: white;
}

.alert-info {
  background-color: #2196f3;
  color: white;
}

#flash-message {
  transition: opacity 0.5s ease;
}
.logo-home-animated {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeZoomIn 1s ease-out forwards;
}

@keyframes fadeZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.card {
  border: 1px solid #dba256;
  box-shadow: 0 1px 8px 0 #111;
}

main {
  flex: auto;
}
footer {
  flex-shrink: 0;
}

/* Tablettes et petits laptops */
@media (max-width: 1024px) {
  .global::before,
  .global::after {
    width: 320px;
    height: 320px;
  }
  .global::before {
    left: -2rem;
  }
  .global::after {
    right: -2rem;
  }
}

/* Mobiles classiques */
@media (max-width: 480px) {
  .global::before,
  .global::after {
    display: none;
  }
  .logo {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
}

@media (max-width: 576px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  h1.text-center {
    font-size: 1.75rem;
  }
}

input.form-control,
button.btn {
  font-size: 1rem;
  line-height: 1.5;
}

main {
  flex: 1 0 auto;
  padding-bottom: 2rem;
}

.container {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
h1.text-center {
  font-size: 1.75rem;
}

input.form-control,
button.btn {
  font-size: 1rem;
  line-height: 1.5;
}

main {
  flex: 1 0 auto;
  padding-bottom: 2rem;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  min-width: 600px;
}

@media (max-width: 768px) {
  .global::before,
  .global::after {
    width: 240px;
    height: 240px;
    opacity: 0.6;
  }
  .global::before {
    left: -1.5rem;
  }
  .global::after {
    right: -1.5rem;
  }
}
@media (min-width: 1200px) {
  .logo {
    font-size: 3rem;
  }
}
