*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family:sans-serif;
}
body{
    max-width: 100vw;
    min-height: 100vh;
    display:flex;
    flex-direction: column;
}
.container{
    width:100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-areas:'header header header'
                        'sidebar-left main sidebar-right'
                        'footer footer footer';
    gap: 20px;
    padding: 16px;
    flex-grow:1;
   border: 5px solid red;
}
.header{
    grid-area: header;
    padding: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-align:center;
    border-bottom: 3px solid #88ff75;
}
#toggleTheme{
    position: fixed;
    top: 2%;
    right: 3%;
    background-color: #6d6d6d;
    border:none;
    border-radius: 50%;
    padding: 2px;
    font-size: 30px;
    cursor: pointer;
    text-align:center;
    
}
.sidebar-left{
    grid-area: sidebar-left;
}
.sidebar-right{
    grid-area: sidebar-right;
}
.sidebar-left, .sidebar-right{
    width: 100%;
    height: auto;
    padding: 24px;
    background-color: #ffffff;
    color: #1f2937;
    box-shadow: 0 0 10px rgba(0,0,0, 0.08);
    border-radius:8px; 
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-left h2, .sidebar-right h2{
    margin-bottom: 16px;
    text-align: center;
}
.side-left p, .main-content p, .sidebar-right p{
    color: #374151;
}
.sidebar-left .Pac-Side{
    width: 100%;
    height: 10rem;
    background-image: url('nCNKRK.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 8px;

}
.sidebar-left .ourlife{
    width: 100%; 
    height: 10rem;
    background-image: url('ourlife.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 8px;
}
.sidebar-right .VN-profile{
    width: 100%;
    height: 10rem;
    background-image: url('unnamed.webp');
    background-position: center;
    border-radius:8px; 
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.sidebar-right  .Screamo-profile{
    width: 100%;
    height: 10rem;
    border-radius:8px; 
    background-image: url('screamo.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.main-content{
    width: 100%;
    height: auto;
    grid-area: main;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}
.main-content h2{
    font-size: 30px;
    margin-bottom: 16px;
    color: #a78bfa;
}
.main-content p{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
}
.main-content .banner{
    width: 100%;
    height: 25rem;
    background-image: url('1(1).png');
    border-radius: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.footer{
    grid-area: footer;
    padding: 24px;
    text-align:center;
    background-color: #000;
    color: #aaa;
    font-size: 16px;
}