body {
    background-color: rgba(94, 94, 94, 1);
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.overview-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    border-radius: 10px;
    width: 100vw;
    min-height: 25vh;
    margin: 2em 4em 0em 4em;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
}

.overview-left {
    margin: 2em;
    margin-top: 0.5em;
    font-size: 1.2em;
}

.overview-right {
    margin: 4em;
    margin-top: 5em;
}

.overview-left strong{
    font-size: 4em;
    color: orange;
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.header-left {
    margin-left: 4em;
    margin-top: 1em;
    max-width: 15%;
}

.lower {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    margin: 2em 4em;
    width: calc(100vw - 4em);
}
.categories-box {
    display: flex;
    gap: 2em;
    background-color: rgba(125, 120, 120, 0.1);
    width: calc(50% - 1em);
    height: 44vh;
    border-radius: 10px;
    padding: 2em;
    box-sizing: border-box;
    border-style: solid;
    border-color: rgba(125, 120, 120, 1);
}

.forecast-box {
    background-color: rgba(125, 120, 120, 0.1);
    width: calc(50% - 1em);
    height: 44vh;
    border-radius: 10px;
    border-style: solid;
    border-color: rgba(125, 120, 120, 1);
    box-sizing: border-box;
    padding: 1em;
}

.forecast-box canvas {
    width: 100% !important;
    height: 100% !important;
}


.categories-box a {
    text-decoration: none;
    color: inherit; 
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    text-align: center;
    padding: 0.5em;
    overflow: hidden;
}

.categories-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: auto;
}

.categories-box h3 {
    color: rgba(125, 120, 120, 1);
    font-size: x-large;
}

.categories-box a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}