@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single:wght@100..900&family=Bitcount:wght@100..900&family=DM+Serif+Text:ital@0;1&family=Griffy&family=Kings&family=Nosifer&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+AU+NSW:wght@100..400&family=Rouge+Script&display=swap');
body {
    font-family: 'DM Serif Text', serif;
    margin: 0;
    padding: 0;
    background: #58a3e9;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
}

.navbar {
            width: 100%;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: transparent;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
        }
        .navbar .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #033d53;
            font-weight: bold;
            text-decoration: underline;
            text-decoration-style: dotted;
        }
        .navbar ul li a {
            text-decoration: underline;
            text-decoration-style: dotted;
            color: #05234b;
            font-size: 1.9rem;
            transition: color 0.5s ease;
        }
        .navbar li {
            list-style: none;
        }
        .navbar ul li a:hover {
            color: #789ed6;
        }
h1 {
    font-family: 'Playfair Display', serif;
    margin: 20px 0;
    text-align: center;
    color:  #05234b;
}

#palette-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.color-card {
    width: 120px;
    height: 150px;
    border-radius: 19px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
    color: #fffdfd;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.5s;
}

.color-card:hover {
    transform: scale(1.07);
}

button {
    padding: 20px 40px !important;
    font-size: 16px !important;
    border: inset !important;
    border-radius: 17px !important;
    cursor: pointer !important;
    background: #1b4b79 !important;
    color: #9cd6f7 !important;
    text-align: center;
    transition: background 0.3s !important;
}

button.lock-btn {
    height: 1.9px !important;
    width: 8px !important;
    text-align: center !important;
    color: #9cd3f7 !important;
}
button:hover {
    background: #b0eaec !important;
    color: #09475a !important;
}

  footer {
            text-align: center;
            font-size: 1.2rem;
            color: #05234b;
            background-color: semi-transparent;
        }