/* 
    File: styles/about.css
    Author: Yash Balotiya
    Description: This file contains the styles for the about page.
    Created on: 03/06/2025
    Last Modified: 03/06/2025
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.aboutSection {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    line-height: 30px;
}

.aboutSection h3 {
    font-size: 30px;
    color: #042b8d;
}

/* Rules */
.rulesSection {
    align-items: flex-start;
}

ol li {
    font-weight: bold;
}

ul li {
    font-weight: normal;
}

.subList {
    list-style-type: lower-alpha;
}

ul, ol {
    padding: 0px 25px;
}

/* Responsiveness */
@media (max-width: 1000px) {
    .aboutSection {
        width: 90%;
    }
}