/* Universal style for resized images */
/* Universal styles for the image */
.resized-image {
    width: 350px; /* Default width */
    height: auto; /* Let the height adjust proportionally */
}

/* Media query for screens smaller than 600px */
@media (max-width: 600px) {
    .resized-image {
        width: 350px; /* Adjusted width for smaller screens */
    }
}

/* Media query for screens larger than or equal to 601px and smaller than 1000px */
@media (min-width: 601px) and (max-width: 999px) {
    .resized-image {
        width: 600px; /* Adjusted width for medium-sized screens */
    }
}

/* Media query for screens larger than or equal to 1000px */
@media (min-width: 1000px) {
    .resized-image {
        width: 600px; /* Adjusted width for larger screens */
    }
}


/* Media query for screens smaller than 600px */
@media (max-width: 600px) {
    body {
        font-size: 12px;
    }
    header {
        font-size: 18px;
        background-color: #0000CD;
        color: white;
        padding: 1rem;
        text-align: left;
    }
	
	.vertical-nav ul {
    list-style-type: circle;
    padding: 20px;
    margin: 0;
	font-size: 24px;
	}

}


@media (min-width: 601px) {
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    background-color: #0000CD;
    color: white;
    padding: 1rem;
    text-align: center;
}

.container {
    display: flex;
    flex: 1;
}

.vertical-nav {
    width: 130px;
    background-color: #0000CD;
}

.vertical-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.vertical-nav ul li {
    text-align: center;
}

.vertical-nav ul li a {
    display: block;
    color: white;
    padding: 1rem;
    text-decoration: none;
}

.vertical-nav ul li a:hover {
    background-color: #0055CD;
}

main {
    flex: 1;
    padding: 1rem;
}
}
