@import "../universal.css";

.container {
    display: grid;
    grid-template-areas:
        'header'
        'dividerWide1'
        'introCont'
        'warning'
        'main'
        'dividerWide2'
        'footer';
    justify-content: center;
    align-items: center;
    width: 800px;
    padding: 20px;
    gap: 20px;
}

header {
    grid-area: header;
}

.dividerWide {
    grid-area: dividerWide1 dividerWide2;
    width: 90%;
    height: 32px;
    justify-self: center;
    background-image: url(../WebsiteImages/Dividers/Website_OCs_PicketFence_32x32.png);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: left;
}

.introCont {
    grid-area: introCont;
    justify-self: center;
    width: 100%;
    max-height: 275px;
    overflow: auto;
}

.warning {
    grid-area: warning;
    justify-self: center;
    width: 100%;
    max-height: 275px;
    overflow: auto;
}

main {
    grid-area: main;
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;
    justify-self: center;
    width: 100%;
    padding: 5px;
    gap: 5px;
}

.neighbour {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    align-items: center;
    width: 120px;
}

footer {
    grid-area: footer;
    justify-self: center;
    width: 100%;
    text-align: center;
}