body {
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    color: rgb(238, 238, 238);
    cursor: default;
    scroll-behavior: smooth;
    z-index: 1;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("./images/bg.jpg");
    filter: grayscale(1) blur(2.5px);
    background-size: cover;
    z-index: 0;
    transform: scale(1.05);
}

.glow {
    text-shadow: 0 0 6px rgb(77, 77, 77);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(27, 27, 27);
    z-index: 90;
}

.profile-image {
    border-radius: 50%;
}

.profile-image-one {
    width: 40px;
    margin-top: 6px;
}

.profile-image-two {
    width: 75px;
    height: 75px;
}

#avatar-decoration {
    width: 86px;
    height: 86px;
    transform: translate(-6px, -114px);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px 10px 10px;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(53, 53, 53);
    z-index: 10;
}

.nav span {
    display: inline-block;
    margin: 0 8px;
}

.nav a {
    transition: all 0.2s;
}

.nav a:hover {
    transform: scale(1.1);
    color: rgb(165, 165, 165);
    cursor: pointer;
}

#home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 75px;
}

.profile {
    background-color: rgb(43, 43, 43);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 1.2px 1.2px 4px rgb(12, 12, 12);
    margin-bottom: 60px;
    transition: 0.22s all;
}

.profile:hover {
    transform: scale(1.01) translateY(-3px);
    box-shadow: 2.4px 2.4px 8px 2px rgb(17, 17, 17);
}

.pfp-image-stuff {
    width: 75px;
    height: 75px;
}

.guild-tag {
    display: flex;
    align-items: center;
    background-color: rgb(75, 75, 75);
    padding: 6px;
    border-radius: 10px;
}

.guild-tag img {
    width: 1.1em;
    margin-right: 2px;
}

#username {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
}

.profile-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}

#profile-status {
    margin: 0;
    margin: 5px 0;
}

#status-image {
    width: 15px;
    position: relative;
    right: -25px;
    bottom: 26px;
    background-color: rgb(43, 43, 43);
    padding: 4px;
    border-radius: 50%;
}

#languages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.language {
    display: flex;
    flex-direction: column;
    background-color: rgb(43, 43, 43);
    padding: 20px;
    border-radius: 7px;
    align-items: center;
    box-shadow: 1.2px 1.2px 4px rgb(17, 17, 17);
    transition: 0.22s all;
}

.language:hover {
    transform: scale(1.04) translateY(-3px);
    box-shadow: 2.4px 2.4px 8px 2px rgb(17, 17, 17);
}

.language-icon {
    width: 50px;
    height: 50px;
}

.language-stuff {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.language-info h3 {
    margin-top: 5px;
    margin-bottom: 0
}

progress {
    background-color: rgb(73, 73, 73);
    border: none;
    height: 7px;
    border-radius: 5px;
    margin-top: 2px;
    color: rgb(41, 93, 206);
}

progress::-moz-progress-bar {
    background: rgb(41, 93, 206);
}

progress::-webkit-progress-value {
    background: rgb(41, 93, 206);
}

#projects {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 60px 0;
}

.project {
    background-color: rgb(43, 43, 43);
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-radius: 6px;
    box-shadow: 1.2px 1.2px 4px rgb(17, 17, 17);
    padding: 5px;
    transition: 0.3s all;
}

.project:hover {
    transform: scale(1.04) translateY(-3px);
    box-shadow: 2.4px 2.4px 8px 2px rgb(17, 17, 17);
}

.project-image {
    width: 100px;
    height: 100px;
    align-self: center;
}

.projects-container p {
    margin: 10px 15px 10px 0;
}

.projects-container {
    color: whitesmoke;
    text-decoration: none;
}

#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    gap: 24px;
    margin-top: 0;
}

.contact-card {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1.2px 1.2px 4px rgb(17, 17, 17);
}

.socials-image {
    width: 50px;
    height: 50px;
    transition: all 0.4s cubic-bezier(.32,.83,.4,.95);
}

.socials-image:hover {
    transform: rotate(360deg);
    cursor: pointer;
}

.socials-header {
    margin-bottom: 8px;
}

.hidden {
    opacity: 0;
    transform: translateY(50px)
}

.hidden.shown {
    transition: all 0.6s cubic-bezier(.32,.83,.4,.95);
    transform: translateY(0);
    opacity: 1;
}

#overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
}

#overlay.hidden {
    opacity: 0;
    z-index: -1;
}

.overlay-popup p {
    font-size: 26px;
}