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

h1 {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 650px;
    color: white;
    cursor: pointer;
    font-size: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    border-bottom: 1.5px solid white;
    padding-bottom: 10px;
}

.Minju {
    margin-right: 750px;
    text-align: left;
    margin-left: 30px;
    margin-top: 140px;
    cursor: pointer;
    animation: slideIn 1s ease-in-out;

}

.Aileen {
    margin-right: 750px;
    text-align: left;
    margin-left: 30px;
    margin-top: 120px;
    cursor: pointer;
    animation: slideIn 1s ease-in-out;
}

.Yewon {
    margin-left: 750px;
    text-align: right;
    margin-right: 30px;
    margin-top: 60px;
    cursor: pointer;
    animation: slideIn 1s ease-in-out;

}

.title1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 23px;
}

.title2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 23px;
}

.title3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 23px;
}

.minju {
    font-size: 18px;
    font-weight: 30;
    border-bottom: 1.5px solid white;
    padding-bottom: 10px;
}

.aileen {
    font-size: 18px;
    font-weight: 30;
    border-bottom: 1.5px solid white;
    padding-bottom: 10px;
}

.yewon {
    font-size: 18px;
    font-weight: 30;
    border-bottom: 1.5px solid white;
    padding-bottom: 10px;
}

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;
    animation: slideIn 1s ease-in-out;
}

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

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