body {
    background-image: url("../images/projects.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: white;
}

h1 {
    text-align: left;
    margin-left: 00px;
    font-size: 100px;
    color: white;
    border-bottom: 1.5px solid white;
    margin-top: 50px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);

}

h2 {
    color: white;
    text-align: center;
    font-size: 36px;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    animation: slideIn 1s ease-in-out;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    margin: 15px 0;
    font-size: 14px;
    animation: slideIn 1s ease-in-out;
}

a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 5px 10px;
    border-radius: 7px;
    border-color: rgba(19, 55, 93, 0.5);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
    animation: slideIn 1s ease-in-out;
}


a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid white;
}

.minju, .yewon, .aileen {
    text-align: left;
    margin-left: 20px;
}

.Minju, .Yewon, .Aileen {
    color: white;
    margin-left: 0;
    margin-top: -20px;
}

.minju, .Minju {
    margin-left: -930px;
}

.minju {
    margin-top: 50px;
}

.yewon {
    margin-top: -40px;
}

.yewon, .Yewon {
    margin-left: -25px;
}

.aileen, .Aileen {
    margin-right: -930px;
}

.aileen {
    margin-top: -410px;
}

a.more-link {
    font-size: 14px;
    padding: 10px 15px;
    position: absolute;
    left: 35px;
    top: 35px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid white;
    transition: all 0.3s ease;
    animation: slideIn 1s ease-in-out;
    color: white;
}

a.more-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
    border-color: white;
    text-decoration: underline;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
