body {
    font-family: macondo;
    background-color: black;
    text-align: center;
    letter-spacing: 3px;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

h1 {
    color: white;
    text-align: center;
    margin-top: 50px;
}

.glowinglight {
    font-size: 40px;
    color: white;
    animation: glow 5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e9d7e0;
    }
    
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #e7d3dd, 0 0 40px #ded3d8;
    }
}

hr {
    margin-top: 30px;
    width: 50%;
    height: 2px;
    background-color: rgb(76, 159, 226);
    border-color: rgb(76, 159, 226);
}

ul {
    color: white;
    font-size: 22px;
    list-style: none;
    padding: 25px;
    margin-top: -30px;
}

li {
    display: inline-block;
    padding: 25px;   
}

li:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
    text-decoration: underline;
    text-underline-offset: 15px;   /* space between text and underline */
}

a {
    text-decoration: none;
    color: rgb(127, 83, 143);
}

a:hover {
    color: green;
}

/* Form styling - updated to match your HTML */
input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid black;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    cursor: pointer;
    font-family: urbanist;
    font-size: 12px;
    background-color: white;
    color: black;
}

input[type=text]:hover,
input[type=email]:hover {
    background-color: rgb(223, 214, 232);
}

select {
    background-color: white;
    color: black;
}

select:hover {
    background-color: rgb(223, 214, 232);
}

form {
    text-align: left;
}

label {
    color: white;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.container {
    border-radius: 5px;
    background-color: #b388e2;
    padding: 20px;
    max-width: 50%;
    display: block;
    margin: auto;
    margin-top: 25px;
}

#message {
    font-family: urbanist;
    min-height: 200px;
}

button {
    display: block;
    margin: auto;
    box-shadow: 10px 5px 10px white;
}

.sendbutton {
    width: clamp(200px, 40vw, 300px); /* Scales between 200px-300px */
    height: clamp(40px, 8vw, 50px); /* Scales between 40px-50px */
    cursor: pointer;
    text-align: center;
    font-family: macondo;
    font-size: clamp(14px, 2.5vw, 18px); /* Responsive font size */
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    color: white;
    background: radial-gradient(circle at 52.1% -29.6%, rgb(144, 17, 105) 0%, rgb(51, 0, 131) 100.2%);
    margin-top: 20px;
}

button:hover {
    background: radial-gradient(circle at 10% 20%, rgb(222, 168, 248) 0%, rgb(168, 222, 248) 21.8%, rgb(189, 250, 205) 35.6%, rgb(243, 250, 189) 52.9%, rgb(250, 227, 189) 66.8%, rgb(248, 172, 172) 90%, rgb(254, 211, 252) 99.7%);
    transition: 0.5s ease-in-out;
    box-shadow: 10px 5px 10px white;
}

.sendbutton:hover {
    color: rgb(50, 55, 51);
}

.footermessage {
    color: white;
    margin-top: 80px;
    text-align: center;
}

.footermessage a {
    color: rgb(127, 83, 143);
}

.footermessage a:hover {
    color: green;
}