body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #333333;
    color: --colour-orange;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 100%;
    background-color: #666666;
    padding: 10px;
    color: #000000;
}

.menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu li {
    flex-grow: 1;
    text-align: center;
}

.menu li:not(:last-child) {
    margin-right: 10px;
}

.main {
    flex: 0.99;
    display: flex;
    justify-content: center;
    max-width: 960px;
    width: 100%;
    padding: 0 20px;
    color: #666666;
}

/* Responsive design */
@media (max-width: 768px) {
    /* Your responsive styles here */
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 100%;
    background-color: #666666;
    padding: 10px;
    color: #000000;
    font-size: 0.8em; /* Adjust the font size as needed */
}

.footer-text {
    text-align: center;
    color: rgba(50, 50, 50, 100);
    /* padding-left: 4%; */
    padding-bottom: 0.5%; 
    
}