.background {
  width: 100vw;
  height: 100vh;
  background-image: url("./medias/images/background.avif");
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
}

body {
  overflow: hidden;
}

.content {
  background-color: rgba(0, 0, 0, .8);
  width: 50vw;
  margin: 0 auto;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

h1 {
  user-select: none;
  color: rgb(255, 0, 251);
  width: 100%;
  padding: 3rem 0;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}

.cards-contener {
    margin-top: 5rem;
	display: flex;  
}

.card {
  margin: 1rem;
  width: 32rem;
  background-color: rgba(255, 255, 255, .7);
}

.btn {
  background-color: rgb(0, 160, 255);
  border-color: rgb(0, 160, 255);
}