*{
    margin: 0%;
    padding: 0%;
    font-family: 'poppins', sans-serif;
}

.container{
    min-height: 100vh;
    background-image: url("../Pictures/page_editor/page_editor_background.jpg"); /* Add your background image here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ensure the background stays fixed when scrolling */
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
    /* justify-content: center; */
}

.content{
    width: 620px;
    height: auto;
    background-color: #dbd6d6d7;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    margin: 40px;
}

.profile img{
    width: 200px; /* Adjusted width */
    border-radius: 50%;
    margin-top: 30px;
    margin-bottom: 10px;
}

.details{
    margin-top: 2%;
    line-height: 2; /* Adjust line height for h1 */
    margin-bottom: -3%;
}

.page-details{
    margin-top: 3%;
    line-height: 1.1; /* Adjust line height for h1 */
}

.page-details a{
    color: rgba(38, 15, 138, 0.658);
    text-decoration: none;
}

.page-details a:hover {
    border-bottom: solid 2px; /* This adds underline on hover */
}

h4{
    margin-top: 3%;
}
h5{
    margin-top: 3%;
}
.page-editor-button{
    padding: 10px;
    text-align: end; 
    margin-bottom: 20px;
}

.page-editor-button a{
    padding: 10px;
    color: white;
    background-color:  #116a99;
    border-radius: 8px;
    font-weight: bold;
    margin: 0px;
    text-decoration: none;
}

.page-editor-button a:hover {
    background-color:#0f5378;
}
