@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");

body {
  font-family: "Ubuntu", sans-serif;
  font-size: 11.5px;
  color: white;
  background-color: #232323;
  overflow: hidden;
  margin: 0;
}

.header {
  text-align: center;
  margin-top: 20vh;
  margin-bottom: 20vh;
}

.card-container {
  display: flex;
  justify-content: center;
  margin-left: 40px;
}

.card {
  background-color: #48484884;
  width: 300px;
  height: 300px;
  text-align: center;
}

.img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: 170px;
}

.title {
  font-size: 20px;
  color: white;
  margin-top: 30px;
}

.disc {
  font-size: 12px;
  color: white;
  margin-top: 5px;
  margin-bottom: 20px;
}

.buttons {
  background-color: rgba(125, 111, 192, 0.657);
  border: none;
  border-radius: 20px;
  width: 100%;
}

.buttons:hover {
  background-color: rgba(125, 111, 192, 0.9);
}


#footer{
    position: fixed;
    bottom: 0;
    left: -2px;
    width: 100%;
    background-color: #1c1c1c;
    color: white;
    text-align: center;
    padding-top: 10px;
}