* {
    transition: all 0.2s ease;
}

body {
    margin: 0;
    height: 100vh;
    text-align: center;
    font-family: 'Inter', sans-serif;
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    color: white;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

hr,
a,
#profile-img {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

hr {
    width: 100%;

}

a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    width: 12.5rem;
    border-radius: 0.75rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

a:hover {
    background: rgba(255, 255, 255, 0.3);
    scale: 1.02;
}

#wrapper-div {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-height: 870px) {
    #wrapper-div {
        padding: 2rem;
    }
}

#main-div {
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#profile-img {
    height: 10rem;
    border-radius: 50%;
}

#title {
    margin-top: 1rem;
    margin-bottom: 0;
}

#subtitle {
    margin-top: 0;
}

.icon-img {
    width: 1.5rem;
    border-radius: 20%;
    filter: drop-shadow(0 0 4px white);
    -webkit-filter: drop-shadow(0 0 4px white);
}