*{
    box-sizing: border-box;/*include magin and padding to all element sizing*/
}

.container {
    display: flex;/*all container class should be flexed obviously*/
    flex-wrap: wrap;/*idk why this should be indicated given I want the display to flex*/
    gap: 5px;
    padding: 5px 5px 5px 5px;
}

.menu-container {
    flex: 1;/*menu should be 1/5 of the entire screen*/
    flex-direction: column;/*flex should be downwards*/
    border-right: 1px solid black;
}

.content-container{
    min-width: 600px;
    flex:5;
    flex-direction: column;
}



.button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease, transform 0.1s ease;
}