/* Container styling */
.container {
    position: relative;
    width: calc(100% - 300px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 300px;
    transition: all 0.5s ease;
}

/* Centering content */
.container .center {
    text-align: center;
}

/* Site content styling */
.container .center .site {
    max-width: 640px;
    padding: 20px;
    background-color: var(--sidebar-backgroud);
    border-radius: 8px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Logo styling */
.container .center .site #logo {
    width: 120px;
    height: auto;
    border-radius: 12px;
}

/* Title styling */
.container .center .site #title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Paragraph styling */
.container .center .site .site p {
    font-size: 1.2rem;
    color: #fff;
}

.sidebar.closed ~ .container {
    width: calc(100% - 75px);
    left: 75px;
}

/* CONTENT 1 */
.container .content1 {
    margin-top: 50px;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: var(--sidebar-backgroud);
    border-radius: 8px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-wrap: break-word;
}
