.under-banner {
    position: absolute;
    top: 23vh;
    width: 100%;
    max-width: 1000px;
    height: 25vh;
    background-color: #242336;
    border-radius: 2.5vh;
    z-index: 0;
}

.main-content {
    animation: 
        fade-in-left 0.6s ease-in-out,
        opacity-add 0.6s ease-in-out;
}

.projects {
    display: flex;
    width: 100%;
    gap: 8px;
    flex-wrap: wrap;
}

.pfp {
    width: 100px;
    height: 100px;
    background-image: url("/Data/Images/banner.iceless.png");
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    z-index: 2;
    box-shadow: rgba(0,0,0,0.1) 4px 4px 4px;
}

.banner {
    background-image: url("/Data/Images/banner.iceless.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 25vh;
    filter: blur(5px);
    z-index: -100;
}

.banner-blur {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.description {
    color: rgba(255,255,255,0.4);
}

.main-content h2 {
    margin-top: 32px;
}

.main-content {
    transform: translateY(-8vh);
    padding-top: 0;
}

.tags {
    display: inline-flex;
    padding-bottom: 16px;
    padding-top: 16px;
    vertical-align: top;
    width: 100%;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    box-sizing: content-box;
    height: 36px;
    background-color: black;
    padding: 4px 12px 4px 12px;
    text-justify: center;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-items: center;
    text-justify: center;
    border: 2px solid rgba(255,255,255,0.5);
}

.tag p {
    color: white;
    font-size: 16px;
}

.tag div {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    margin-right: 8px;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 40px;
}

.contact {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    display: flex;
    box-sizing: content-box;
    background-color: #8c8c8c;
    border: 2px solid rgba(255,255,255,0.5);
    position: relative;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background-size: cover;
    background-position: center;
    margin: 16px;
}

.contact-area {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 8px;
}

.contact-link {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    height: 32px;
    border-radius: 8px;
    color: white;
    box-sizing: content-box;
    border: 2px solid rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.3);
}

.contact-link:hover {
    opacity: 0.8;
}