@import url(/Style-Framework.css);

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

main > .window {
    width: 40%;
}

#MenuBoxButton {
    position: fixed;
    top: 3vh;
    left: 3vw;
}

#MenuBoxButton > .content > .MenuBar {
    background-color: var(--window-header-color);
    width: 2vw;
    height: 1vh;
    /*margin-bottom: 1vh;*/
}

#BlogList a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 30px;
}

@media (max-width: 1024px) {
    main {
        flex-direction: column;
    }

    main > .window {
        width: 70%;
    }
}