@font-face {
    font-family: 'barlow';
    src: url('https://ecs.wgtn.ac.nz/foswiki/pub/Events/WiDSNZ2024/Fonts/Barlow-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'barlow-condenced';
    src: url('https://ecs.wgtn.ac.nz/foswiki/pub/Events/WiDSNZ2024/Fonts/BarlowCondensed-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
}
.content {
    font-family: 'barlow';
    font-size: 16px;
    width: 80%;
    margin: 0 auto; /* Center the container horizontally */
    height: 100%;
}
.menu-table {
    border-collapse: collapse;
    width: 100%;
    background-color: lightgrey;
    margin-bottom: 20px;
}
.menu-table td {
    border: 1px solid white;
    padding: 5px;
    height: 55px;
    text-align: center; /* added text-align property */
    font-size: 20px;
    font-weight: bold;
}
.menu-table td a {
    color: black;
    text-decoration: none !important;
}
.menu-table td span.active {
    color: #42A85F;
}
.header-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}
.header-table td {
    padding: 5px;
    text-align: center; /* added text-align property */
    font-size: 28px;
}
.header-table h1 {
    margin-bottom: 0;
}
.color-animation {
    animation-name: color-change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
a, a:hover {
    color: #42A85F;
    text-decoration: underline !important;
}
a:visited {
    color: #173A21;
}
.logo {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@keyframes color-change {
    0% {
        color: #42A85F;
    }
    25% {
        color: #009EC9;
    }
    50% {
        color: #F76902;
    }
    75% {
        color: #8D73DE;
    }
    100% {
        color: #173A21;
    }
}
