* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: black;
  color: #fff;
  padding-top: 70px;
}

.homepage-main {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  background-color: #0000fe;
  color: #fff;
}

/* HEADER  */

nav {
  font-size: 18px;
  background-color: #0000fe;
}

.nav-link:hover {
  color: #ffcd01;
}

/* BODY */
.btn {
  font-size: 25px;
  color: white;
}

.csi {
  max-width: 100px;
}

.yellow-title {
  color: #ffcd01;
}

/* FOOTER */
.social-title,
.sponsor-title,
.rosa-title,
.calendario-title,
.statistiche-title {
  color: #ffcd01;
}

.social a {
  color: #fff;
  text-decoration: none;
}

.social a:hover {
  color: #ffcd01;
}

.social a i {
  font-size: 80px;
}

.canalic,
.goldbet {
  max-height: 200px;
  max-width: 450px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* CALENDARIO */
.lost {
  color: red;
}

.won {
  color: green;
}

.draw {
  color: orange;
}

/* TABELLA STATISTICHE  */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
th {
  background-color: #0000fe;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .logo {
    max-width: 250px;
  }

  .btn {
    font-size: 18px;
  }

  .social-title {
    text-align: center;
  }

  .social a i {
    justify-content: center;
  }

  .sponsor-title {
    text-align: center;
  }

  .social a i {
    font-size: 50px;
  }

  .canalic,
  .goldbet {
    max-width: 250px;
  }
}

.hover-card {
  position: relative;
  overflow: hidden;
}

.card-image-container {
  position: relative;
  overflow: hidden;
}

.default-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hover-card:hover .default-image {
  opacity: 0;
}

.hover-card:hover .hover-image {
  opacity: 1;
}
