
/* body {
    display: flex;
    justify-content: center;
    align-items: center;
} */
.work_container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.work_main{
    border: solid;
    border-radius: 20px;
    padding: 30px;
}
.work_maintop{
    font-size: xx-large;
    font-weight: bolder;
    text-decoration: underline;
    margin-bottom: 50px;
}
.work_mainbodylist li{
    list-style: decimal; /* changed from "style" to "none" */
    padding-bottom: 20px;
    font-size: x-large;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.modal-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.modal-content input[type="text"] {
    width: 80%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.modal-content button[type="button"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.modal-content button[type="button"]:hover {
    background-color: #3e8e41;
}


/* Prince will */
.prince_workcontainer {
    background-color: #fff; 
  }
  
  .prince_work {
    position: relative;
    font-size: 24px;
    overflow: hidden;
    white-space: nowrap; 
    transform: translateX(-100%); 
    animation: slideIn 2s forwards; 
  }
  
  @keyframes slideIn {
    to {
      transform: translateX(0);
    }
  }