@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Ubuntu+Sans+Mono:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --algae: #25cab7;
    --dark-algae: #137d71;

}

body {
    font-family: "Ubuntu Sans Mono", monospace;
    display: flex;
    flex-direction: column;
    margin: 20px;
    width: fit-content;

}

:link {
    color: var(--algae);
    font-weight: bold;
}

:visited {
    color: var(--dark-algae);
    font-weight: bold;

}

.header {
    display: flex;
    flex-flow: column;
    gap: 20px;

}

.links {
    display: flex;
    flex-flow: row;
    gap: 20px;
    justify-content: right;
    margin-top: 10px;
    margin-right: 10px;
}

.title {
    display: flex;
    font-size: x-large;
    flex-direction: column;
    justify-content: left;
    margin-left: 30px;
}

.main-body {
    display: flex;
    flex-direction: row;
}

.description {
    display: flex;
    flex-direction: column;
    align-items: left;
    flex: 1 1 0;
    text-align: left;
    margin-left: 60px;
}


.fx {
    flex: 1 2 0;
    z-index: -1;
    min-height: 300px;
    min-width: 200px;
    margin-right: 200px;
    justify-content: flex-end;
}


@media(width <=500px) {
    .fx {
        display: none;
    }
}

.gameboard {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;

}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}



table {
    border-spacing: 0;
}

td {
    border-radius: 3px;
    width: 10px;
    height: 10px;
}

span {
    color: #222;
}


td.dead {
    background-color: transparent;
}

td.live {
    background-color: var(--algae);
    border-radius: 10px;
}
