body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

a {
    color: #000080;
}

header {
    width: 100%;
    padding: 20px 0;
    background-color: #0000C0;
    /* Commodore 64 blue screen */
    color: #A0A0FF;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    position: relative;
}

header .main-text {
    font-size: 20px;
}

header .subtitle {
    font-size: 12px;
}

.central-column {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;  /* Centers the column when the viewport is wider than 800px */
}

.centered-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;  /* Ensures the container takes up the full width of its parent */
}

/* Styling the LinkedIn button */
.linkedin-link {
    display: flex;
    align-items: center;
    /* Vertically centers the content */
    text-decoration: none;
    border: none;
    margin-top: 10px;
    /* Add some space between the main image and the link */
}

.linkedin-link img {
    width: 50px;
    height: 50px;
    border: none;
    margin-right: 10px;
    /* Space between the button and the text */
}

/* Removing hover and visited effects for the link */
.linkedin-link:hover,
.linkedin-link:visited {
    text-decoration: none;
}

.responsive-image {
    max-width: 100% !important; /* This will ensure the image will never be larger than its container */
    height: auto;    /* This will keep the image's aspect ratio */
}

.week-number {
    font-size: 30vh; /* 30% of the viewport height */
    text-align: center;
}