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);
}

.aboutMe {
    display: flex;
    margin: 45vh auto;
    top: 55vh;
    transform: translateY(-50%);
    width: min(90%, 500px);
    padding: 16px;
    background: rgba(255, 255, 255, 0);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
    color: grey;
    font-family: Arial, sans-serif;
    font-size: clamp(14px, 3vw, 16px);
}

.aboutMe h2 {
    color: white;
    font-family: Arial, sans-serif;
}

.aboutMe .textAboutMe .contactMe {
    height: 3vh; 
    width: 20%;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-family: Arial, sans-serif;
    font-size: clamp(14px, 3vw, 16px);
    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);
}

.aboutMe .textAboutMe a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(107, 105, 105, 0.5);
}

.text::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 16px 0;
}
