/* 1. Define variables */
:root {
    --purple: #4b3362;
    --red: #e01f26;
    --black: #000000;
    --white: #ffffff;
}

body {
    margin: 0;
    header {
        background-color: var(--purple);
        padding: 12px;
        color: var(--white);
        border-bottom: 6px solid var(--red);

        .logo-wrapper {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;

            img {
                width: 100%;
                max-width: 125px;
            }

            @media (min-width: 700px) {
                flex-direction: row;
                gap: 32px;
                justify-content: center;
            }
        }

        .taikai-year {
            color: var(--red);
        }
    }
}
