* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    height: 100vh;
    background-color: hotpink;
}
p {  background-color:rgb(234, 76, 226);
    width: 100%;
    height: 100%;
    border: 2px solid lavender;
    outline: rgb(255, 117, 204) solid 10px;
    padding: 20px;
    text-align: center;
    pointer-events: none; 

}
.sidebar {
    width: 250px;
    background-color: lemonchiffon;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.menu {
    list-style-type: none;
    width: 100%;
    padding-left: 0;
}

.menu li {
    width: 100%;
}

.menu li a {
    display: block;
    text-align: center;
    padding: 15px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    background-color:darkkhaki
    margin-bottom: 5px;
    transition: background-color 0.3s ease;
}

.menu li a:hover {
    background-color:palegoldenrod 
}

.content {
    border: 2px solid black;
    outline: #e97bb2 solid 10px;
    margin: auto;  
    padding: 20px;
    text-align: center;
}

.secret-text {
    color: black;
    filter: blur(4px);  
    cursor: pointer;    
    transition: filter 0.3s ease; 
    pointer-events: auto; 
}

.secret-text:hover {
    text-decoration: underline; 
}
