body {
    margin: 8px;
    display: block;
    height: 100vh; /* Just to enable scrolling */
    position: relative;
    text-align: center;
    background-color: #000000;
    min-width: 600px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bg-img {
    background-image: url('assets/bg3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    width: 100%;
    height: 100%;
    z-index: -1;

    position: fixed;
    top: 0;
    left: 0;
}


.circle-img {
    width: 120px;  /* Set width */
    height: auto; /* Set height (same as width for a perfect circle) */
    border-radius: 50%;
    object-fit: cover; /* Ensures the image fills the circle */
    display: block;
}

.box {
    width: 85%;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.list-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.top-box {
    width: 50vw;
    min-height: 10vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1000px) {
    .top-box {
        flex-direction: column;
    }
}
.social-icon {
    filter: invert(100%);
    height: 50px;
    margin: 0px 20px;
    transition-duration: 0.1s;
    transition-timing-function: ease-in-out;
    cursor: pointer;

    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.social-icon:hover {
    transform: scale(1.2);
}

.work {
    outline: none;
    display: flex;
    flex-direction: column;
    padding: 0 20;
    border-radius: 15px;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.4);
    margin: auto;
}

.work-link {
    display: inline-block;
    text-decoration: none !important;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;

    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.work-link.large {
    width: 100%;
    max-width: 900px;
}

.work-link.small {
    width: 400px;
    margin: 10px 10px 10px 10px;
}

.work-link:hover {
    transform: scale(1.03);
}

.work-title {
    text-align: center;
    font-family: 'Lato';
    font-weight: bold;
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 0px;
    color: white;
}

.work-desc-short {
    text-align: center;
    font-family: 'Lato';
    font-size: 15px;
    margin-bottom: 15px;
    color: #EBD0F4;
}

.work-img {
    justify-content: center;
    border-radius: 15px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    cursor: pointer;
}

.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
    outline: 2px solid #ffffff;
}

.popup-desc {
    text-align: center;
    font-family: 'Lato';
    font-size: 25px;
    margin-top: 25px;
    margin-bottom: 30px;
    color: #EBD0F4;
}

.popup-link {
    text-align: center;
    font-family: 'Lato';
    font-size: 30px;
    margin-top: 5px;
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    color: #BC00DC;
    text-decoration: underline;
}

.popup-img {
    outline: 1px solid #EBD0F4;
    border-radius: 8px;
    width: 750px;
    height: auto;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 60px;
    cursor: pointer;
    color: white;
    font-weight: bold;

    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.close-btn:hover {
    transform: scale(1.2);
}

.big-text {
    font-size: 40px;/*clamp(18px, 4vw, 40px);*/
    text-align: center;
    font-family: 'Lato';
    font-weight: bold;

    color: white;
    margin-top: 10px;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.tab {
    font-family: 'Lato';
    border-radius: 15px;
    padding: 10px 40px;
    border: 3px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    margin-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 15px;
    width: 100px;
    cursor: pointer;

    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.tab:hover {
    transform: scale(1.1);
}

.tab.active {
    background: rgb(255, 255, 255);
    color: rgb(70, 70, 70);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}