@import "tailwindcss";

body {
    background-color: #1F0322;
    margin: 0;  /* Prevent default body margin */
}

* {
    font-family: "Rubik", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
}

.InteractiveElement{
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    position: absolute;
}

/* Header is positioned absolutely, without the need for top */


/* Title is positioned absolutely, without top */
.Title {
    width: 100%;
    top: 0%;
    height: calc(100vh - 10vh);;  /* Let the content dictate the height */
    position: static;  /* Absolutely positioned relative to .container */
    box-shadow: 0 0 100px rgba(218, 65, 103, 0.25);
}




.HeaderTextCentered{
    color: white;
    font-size: 32px;
    position: relative;
    font-weight: bolder;
    left: 50%;
    transform: translate(-50%, 0);
}

.HeaderTitleCentered{
    color: white;
    font-size: 32px;
    position: relative;
    font-weight: bolder;
}

.CommentCentered{
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    position: relative;
    font-weight:normal;
}

.TextButton{
    background-color: rgba(0, 0, 0, 1);
    color: white;
    height: 100%;
    max-height: 40px;
    outline-style: none;
    border: none;
    width: auto;
    margin-right: 10px;
    border-radius: 40px;
    font-weight: bolder;
    position: relative;
}

.CenterItems{
    display: flex;
    align-items: center;
    align-content: center;
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}



.CenterHorizontal {
    display: flex;
    justify-content: center;
}


.BottomHeads{
    display:flex;
    position: relative;

}

.ListContentContainerCenter {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-self:center;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .ListContentContainerCenterReversed {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: last baseline;
    align-self:center;
    position: relative;
    height: 100%;
  }

  .ListContentContainerSideways {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .ListContentContainerSidewaysCenter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

.sideways-list li {
    margin-right: 20px; /* Adjust spacing between items as needed */
}

  .CardSlot {
    position: relative;
    max-height:  440px;
    max-width: 733px;
    margin: 15px;
    height: 330px;
    width: 549.75px;
    aspect-ratio: 73.3 / 44;  /* Maintain 733:440 aspect ratio */
    border-radius: 20px;
    outline-width: 5px;
    background-image: linear-gradient(to top, rgba(218, 65, 103, 0.25), rgba(218, 65, 103, 0));
    outline-style: solid;
    outline-color: rgba(218, 65, 103, 0.5);
    outline-offset: -1px;
    box-shadow: 0 0 100px rgba(138, 28, 124, 0.25);
}

.CardSlotNoLimit {
    position: relative;
    display: flex;
    margin: 15px;
    border-radius: 20px;
    outline-width: 5px;
    background-image: linear-gradient(to top, rgba(218, 65, 103, 0.25), rgba(218, 65, 103, 0));
    outline-style: solid;
    outline-color: rgba(218, 65, 103, 0.5);
    outline-offset: -1px;
    box-shadow: 0 0 100px rgba(138, 28, 124, 0.25);
}
