/* Body styles */
body {
    background-color: #fee440;
    color: #333;
    transition: background-color 0.5s ease; /* Add smooth transition for body background-color */
    font-family: "Istok Web", Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    font-variant: normal;
    font-size: 14px;
}

svg path {
    transition: fill 0.5s ease; /* Add smooth transition for SVG path fill */
}

/* SVG styles */
svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

/* Frosted transparent white card styles */
.frosted-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.2); /* Adjust the opacity as needed */
    backdrop-filter: blur(12px); /* Add the frosted effect */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Centered content styles */
.center {
    text-align: center;
    z-index: 90;
}

/* Headings styles */
.center h1, .center h3 {
    color: rgb(0, 0, 0);
    
}

.center h1 {
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 1px;
    letter-spacing: 3px;
}

.center h3 {
    font-weight: normal;
    font-style: italic;
    line-height: 3px;
    margin-bottom: 20px;
   
}

/* Button styles */
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: normal;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin: 20px;
    border: 1.9px solid rgb(0, 0, 0);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0);
    color: rgb(0, 0, 0);
    background-position: 100% 0;
    background-size: 540%;
    box-shadow: 0 8px 6px -px rgba(0, 0, 0, 0.450);
    transition: transform 0.3s, box-shadow 0.3s, margin 0.3s;
}

.button:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5)); /* Hover gradient background */
    color: black;
    font-weight: normal;
    border: 1.9px solid rgb(0, 0, 0);
    transform: translate(0, -1px);
    box-shadow: 0 12px 16px -6px #000;
}


/* Color palette button styles */
.color-palette {
    position: fixed;
    bottom: 0;
    right: 0; /* Move the button to the right side */
    margin: 20px;
    z-index: 100; /* Ensure it's above other elements */
}

/* Add this style for the color palette button */
.color-palette-button {
    width: 50px; /* Adjust the size as needed */
    height: 50px; /* Adjust the size as needed */
    cursor: pointer;
    z-index: 100;
    transition: transform 0.3s; /* Add a smooth transition effect */
    border-radius: 50%; /* Create rounded corners (50% of width/height) */
}

/* Add hover effect */
.color-palette-button:hover {
    transform: scale(1.3); /* Increase the size on hover (adjust as needed) */
}
