/* styles.css */
.cookies-banner {
  position: fixed;
  bottom: 0px;
  left: 0%;
  right: 10%;
  width: 100%;
  height:15%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #3D080C;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 1.3em;
}

button {
  background-color:#D1D1D1;
  color: #3D080C;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #23527c;
}
