.box {
    /* Top border*/
    border-style: solid;
    border-width: 30px 0 0 0;

    border-image-source: url("../assets/build/border.png");
    border-image-slice: 34%;
    border-image-width: 30px;

    /* Margins and paddings*/
    margin: 0;
    padding: 5px;

    /* Colors */
    background-color: var(--windowBackground);
    outline: var(--border);
    color: var(--textColor);
    box-shadow: var(--windowShadow);
}


.image {
    display: block;
    height: 100%;
    width: 100%;
}

.toads {
    display: block;
    height: 50%;
    width: 50%;
}

/* Flex Types */
.flex-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.middle-align {
    align-items: center;
    justify-content: center;
}

/* Show and hide blocks */
.displayShow {
    display: block;
}

.displayHide {
    display: none;
}

/* Buttons */
.button {
    /* size */
    width: 100%;
    height: 100%;

    /* Margins and paddings*/
    margin: 0;
    padding: 0;

    /* Colors */
    background-color: var(--windowBackground);
    outline: var(--border);

    /* Extras */
    text-align: center;
    align-content: center;
}

.button:hover {
    background-color: var(--menuBackground);
}

.button:active {
    /* Colors */
    background-color: var(--accent1);
    outline: var(--border);
}

@media (max-width: 600px) {
    .flex-row {
        flex-direction: column;
    }

    .toads {
        display: block;
        height: 100%;
        width: 100%;
    }
}