@import "tailwindcss";

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

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

.TextButton{
    background-color: rgba(0, 0, 0, 0);
    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;
    transition: all .5s ease;
}

.TextButton:hover{
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.25);
}

.TextButton:active{
    transform: scale(0.95);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.Seperator{
    background-color: #ffffff;
    height: 100%;
    max-height: 40px;
    width: 100%;
    max-width: 5px;
    outline-style: none;
    border: none;
    margin-right: 10px;
    border-radius: 40px;
    position: relative;
}

.LoginButton{
    background-color: #DA4167;
    color: white;

    height: 100%;
    width: 100%;
    max-height: 40px;
    max-width: 125px;

    outline-style: none;
    border: none;
    margin-right: 10px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 0 50px rgba(138, 28, 124, 0.25);
    transition: all .5s ease;
}

.LoginButton:hover{
    transform: scale(1.05);
    box-shadow: 0 0 25px rgb(255, 255, 255);
}

.LoginButton:active{
    transform: scale(.9);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}
.RedButton{
    background-color: #DA4167;
    color: white;

    height: 100%;
    width: 100%;
    max-height: 40px;
    max-width: 125px;

    outline-style: none;
    border: none;
    margin-right: 10px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 0 50px rgba(138, 28, 124, 0.25);
    transition: all .5s ease;
}

.RedButton:hover{
    transform: scale(1.05);
    box-shadow: 0 0 25px rgb(255, 255, 255);
}

.RedButton:active{
    transform: scale(.9);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}

.PurchaseButton{
    background-color: #DA4167;
    color: white;

    height: 100%;
    width: 100%;
    max-height: 40px;
    max-width: 125px;

    outline-style: none;
    border: none;
    margin-right: 10px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 0 50px rgba(138, 28, 124, 0.25);
    transition: all .5s ease;
}

.PurchaseButton:hover{
    transform: scale(1.05);
    box-shadow: 0 0 25px rgb(255, 255, 255);
}

.PurchaseButton:active{
    transform: scale(.9);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}

.HeaderItems{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-self:baseline;
    position: absolute;
    top: 0%;
    height: 100%;
    width: 100%;
}

.HeaderTitle{
    color: white;
    font-size: 32px;
    position: relative;
    font-weight: bolder;
    text-align: center;
    transition: all .5s ease;
    z-index: 100;
}

.HeaderTitleLeft{
    color: white;
    font-size: 32px;
    position: relative;
    font-weight: bolder;
    text-align:start;
    transition: all .5s ease;
    z-index: 100;
}

.HeaderTitle a {
    color:gold; /* Inherits the white color from .HeaderTitle */
    font-size: inherit; /* Matches the parent font size */
    font-weight: inherit; /* Matches the parent font weight */
    text-decoration: none; /* Removes the default underline */
    transition: all .3s ease; /* Smooth transition for hover effects */
}

.HeaderTitle a:hover {
    text-decoration: underline; /* Adds an underline on hover for better UX */
}



.HeaderTitleNonCentered{
    color: white;
    font-size: 32px;
    position: relative;
    font-weight: bolder;
    transition: all .5s ease;
    z-index: 100;
}


.CenterVirtical{
    position: relative;
    transform: translate(0, -50%);
    top: 50%;
}

.Header {
    width: 100%;
    height: 10vh;
    max-height: 60px;
    background-color: #000000;
    position: relative;  /* Absolutely positioned relative to .container */
    z-index: 1000;  /* Ensure it stays on top */
}


.container {
    display: flex;  /* Flexbox container */
    width: 100%;
    height: 1000vh;  /* Full viewport height */
    flex-direction:column;  /* Place elements in a row (left to right) */
}

.List{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self:center;
    position: relative;
}

.ListSideways {
    display: flex;
    flex-wrap: wrap;
  }