html,body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    height: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw;
}


.nav-link {
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.nav-link:hover {
    color: #6a2fa1 !important; /* Purple on hover */
}

/* Underline Effect */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #6a2fa1; /* Purple underline */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.active {
    color: white !important;
}

.active::after {
    background-color: white;
    width: 100%;
}

nav {
    background-color: #9fccff;
    outline: 0px;
    outline-offset: 0px;
    outline-color: rgba(0, 0, 0, 0.104);
    outline-style: outset;
    outline-width: 5px;
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
}

.col-content {
    background-color: rgb(0, 0, 0);
    position: absolute;
    top: 100px;
}
.img-div {
    position: absolute;
    background-color: rgba(0, 217, 255, 0.242);
    box-sizing: border-box;
    padding: 4px;
    margin-top: 10px;
    right: 10px;
}
.col-content2{
    background-color: rgb(255, 255, 255);
    color: black;
    box-sizing:border-box;
    max-width: 100vw;
    margin-left: 20px;
    margin-top: 50px;
}
.content-container{
    max-width: 100vw;
    margin: 0;
    box-sizing: border-box;
}
.row2{
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}
.col-content3{
    margin-top:40px;
    margin-left: 30px;
    max-width: 100vw;
}
.row3{
    max-width: 100vw;
}

.img-container{
    max-width: 100vw;
    width: 100vw;
    padding: 0px;
    margin: 0px;
}
.album-edit{
    max-width: 100vw;
    width: 100vw;
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
    color: grey;
}