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

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

}
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;
}


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;
}

.Minju {
    color: white;
    text-align: center;
    font-size: 12px;
    margin-top: -20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    line-height: 0.5;
    font-weight: inherit;
    animation: slideIn 1s ease-in-out;
}

.Yewon {
    color: white;
    text-align: center;
    font-size: 12px;
    margin-top: -50px;
    margin-right: -800px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    line-height: 0.5;
    font-weight: inherit;
    animation: slideIn 1s ease-in-out;
}

.Aileen {
    color: white;
    text-align: center;
    font-size: 12px;
    margin-top: -340px;
    margin-left: -900px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    line-height: 0.5;
    font-weight: inherit;
    animation: slideIn 1s ease-in-out;
}

h3 {
    font-weight: lighter;
}

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