html, body {
    margin: 0;
    padding: 0;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(#222, #000);
    background-attachment: fixed;
    overflow-x: hidden;
}

.selectContainer {
    display: flex;
    container-type: inline-size;
    min-height: 48px;
    padding: 6px;
    margin: 5vh auto 0 auto;
    width: min(90%, 500px);
    background: rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.1px);
    -webkit-backdrop-filter: blur(7.1px);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.selectContainer a {
    min-height: 20px;
    padding: 6px 20px;
    width: auto;
    min-width: 0px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: clamp(12px, 1.6vw, 16px);

    margin: auto;
    text-decoration: none;
    color: white;
    font-family: Arial, sans-serif;

    backdrop-filter: blur(7.1px);
    -webkit-backdrop-filter: blur(7.1px);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.selectContainer a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(107, 105, 105, 0.5);
}

.contactForm{
    width: min(90%, 400px);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 1.25rem;

    font-family: Arial, sans-serif;
    font-size: clamp(12px, 1.8cqw, 18px);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    color: #fff;
}

.contactMe {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
}

.contactMe label {
    width: 90%;
    max-width: 360px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}

.contactMe input[type="text"],
.contactMe input[type="email"],
.contactMe textarea {
    width: 90%;
    max-width: 360px;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    color: #fff;
    box-sizing: border-box;
    outline: none;
}

.contactMe textarea {
    min-height: 140px;
    resize: vertical;
}

.contactMe input[type="submit"] {
    width: 90%;
    max-width: 360px;
    padding: 0.75rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg,#4f46e5,#06b6d4);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.contactMe input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 207, 207, 0.15);
}

.contactMe input[type="text"]::placeholder,
.contactMe input[type="email"]::placeholder,
.contactMe textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

