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

body {
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    overflow: hidden;
}

.navigation {
    background-color: #ffffff;
    color: rgb(41, 41, 41);
    padding: 24px;
    width: 240px;
    
    overflow-y: hidden;
}

.navigation .logo {
    margin-bottom: 8px;
    display: flex; align-items: center; 
}
.navigation .logo p {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 800;
}

.navigation ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    overflow: hidden;
}

.navigation ul li {
    margin-bottom: 24px;
}

.navigation ul li a {
    font-size: 15px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: none;
}
.navigation ul li a:hover {
    color: #747474;
    font-weight: 600;
}

.navigation .category {
    color: #848484;
    font-size: 12px;
    font-weight: 500;
    margin-top: 32px;
}

.content {
    flex-grow: 1;
    width: calc(100% - 240px);
    height: 100vh;
    overflow: hidden;
}

.menu-icon {
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 965px) {
    .container {
        flex-direction: column;
    }

    .navigation {
        position: relative;
        width: 100%;
        height: auto;
    }

    .navigation .logo {
        margin-bottom: 0px;

    }

    .navigation ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .menu-icon {
        font-size: 24px;
        font-weight: 500;
        position: absolute;
        top: 24px;
        right: 24px;
        display: block;
    }

    .content {
        width: 100%;
        
    }
}