@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  font-family: 'Roboto';
  position: relative;
  height: 100vh;
}

.modalContainer {
  display: none;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
  z-index: 9999;
  justify-content: center;
}

#showModalButton {
  padding: 10px 20px;
  background-color: #0c0a09;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#cartButton {
  padding: 9px 18px;
  background-color: #0c0a09;
  color: #fff;
  margin-left: 2px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modalContent {
  background: #1c1917;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modalContent span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#logo {
  height: 48px;
}

.modalContent button {
  display: flex;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #0c0a09;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
