


.intro {
    width: 100%;
    height: 45vh;
    color: white;
    text-shadow: 5px 5px 15px black;
    background-image: url('../img/background-project.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center ;
    font-size: 50px;
    text-align: center;
}

.project-page {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    padding: 50px 50px 0px 50px;
}

.normal .owner {
    background-color: white;
}

.normal .detail div {
    background-color: white;
}

.reverse {
    flex-direction: row-reverse;
    margin-top: 50px;
    padding-bottom: 50px;
    background-color: white;
    color: white;
}

.reverse .owner {
    background-color: rgb(45, 45, 45);
    box-shadow: 5px 5px 15px black;
}

.reverse .detail div {
    background-color: rgb(45, 45, 45);
    box-shadow: 5px 5px 15px black;
}

.owner {
    margin: 10px;
    background-color: pink;
    padding: 10px 30px;
    border-radius: 20px;
    box-shadow: 5px 5px 15px black;
}

.detail {
    margin: 10px;
    cursor: default;
}

.detail div {
    padding: 10px 30px;
    margin: 15px;
    border-radius: 25px;
    box-shadow: 5px 5px 15px black;
}

.box {
    display: flex;
    flex-direction: column;
    padding: 50px;
    align-items: center;
}

.box h3 {
    font-size: 35px;
    color: white;
    text-align: center;
}

.button {
    width: 95%;
    height: auto;
    margin: 10px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    border: 5px solid;
}

.button summary {
    padding: 25px 0px;
    background-color: pink;
}

.complete {
    color: rgb(1, 170, 1);
    transition: all .5s;
}

.complete:hover {
    transition: all .5s;
    transform: scale(1.05);
    color: rgb(1, 170, 1);
    background-color: rgb(200, 252, 200);
}

.button div {
    display: none;
    padding: 10px;
}

.button div ul li{
    padding: 10px 0px;
}

.current {
    color: rgb(170, 125, 1);
    transition: all .5s;
}

.current:hover {
    transition: all .5s;
    transform: scale(1.05);
    color: rgb(170, 125, 1);
    background-color: rgb(255, 241, 202);
}

.updt {
    color: rgb(183, 112, 255);
    transition: all .5s;
}

.updt:hover {
    transition: all .5s;
    transform: scale(1.05);
    color: rgb(183, 112, 255);
    background-color: rgb(230, 206, 255);
}

.popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: rgba(26, 26, 26, 0.7);
    top: 0;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

.popup .box {
    background-color: aliceblue;
    border-radius: 15px 0px;
    width: 40%;
    height: fit-content;
}

.popup .box form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.popup .box form input, .popup .box form textarea, .popup .box form button {
    width: 100%;
    padding: 5px;
    margin: 10px 0px;
}

.outside {
    position: fixed;
    bottom: 20px;
    color: rgb(199, 199, 199);
    cursor: default;
}

.cancel {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: end;
    margin-top: -30px;
    margin-right: -50px;
    cursor: pointer;
}


@media (max-width: 768px) {
    .intro {
        font-size: 24px;
    }
    .project-page {
        flex-direction: column;
    }
    .popup .box {
        width: 70%;
    }
}