.navbar-item {
    color: white;
}
.navbar-item:hover {
    color: black!important;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column
}

.navbar-burger > span {
    color: white;
}

.infoBox {
    transition: 0.1s ease-in-out all;
    min-height: 10vh;
}

.infoBox:hover {
    background-color: hsl(0, 0%, 71%) !important;
}

#page-portfolio .infoBox {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.writingContent p {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.writingContent figure {
    border: 1px dashed black;
    padding: 10px;
}

.container {
    padding: 1rem 0;
}

.dark-mode .wrapper,
.dark-mode .modal-content {
    filter: invert(100%) hue-rotate(180deg);
}

.dark-mode img {
    filter: invert(100%) hue-rotate(180deg);
}

.grid-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
}

.footer-item:nth-child(1) {
    grid-column-start: 2;
    text-align: center;
}

.footer-item:nth-child(2) {
    margin-left: auto;
    padding: 5px;
}

button.footer-item  {
    background-color: #788dec;
    border: 1px solid #4467ff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.footer-item > img {
    height: 20px;
    aspect-ratio: 1/1;
    color: white;
}

.hidden {
    display: none;
}

.wrapper > section {
    margin: 0.5rem;
}