body {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    background-color: #fffcfc;
}

.card {
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 15px;
    text-align: center;
}

.card-content h3 {
    margin: 0 0 10px;
    color: #333;
}

.card-content p {
    color: #777;
}




img {
    width: 400px;
    height: 495px;
    border-radius: 60%;
    list-style: 200px;
    display: block;
    padding: 10px;
    margin: auto;
}

header {
    background-color: #131211d2;
    color: white;
    padding: 1rem;
    text-align: center;
    list-style: 200px;
}

nav{
	position: relative;
	margin: 0px auto 0;
	width: 590px;
	height: 50px;
	background: #5e5f61;
	border-radius: 100px;
	font-size: 0;
	box-shadow: 0 2px 3px 0 rgba(0,0,0,.1);
}
nav a{
	font-size: 15px;
	text-transform: uppercase;
	color: white;
	text-decoration: none;
	line-height: 50px;
	position: relative;
	z-index: 1;
	display: inline-block;
	text-align: center;
}
nav .animation{
	position: absolute;
	height: 100%;
	/* height: 5px; */
	top: 0;
	/* bottom: 0; */
	z-index: 0;
	background: #ff0303;
	border-radius: 100px;
	transition: all .5s ease 0s;
}
nav a:nth-child(1){
	width: 100px;
}
nav .start-home, a:nth-child(1):hover~.animation{
	width: 100px;
	left: 0;
}
nav a:nth-child(2){
	width: 110px;
}
nav a:nth-child(2):hover~.animation{
	width: 110px;
	left: 100px;
}
nav a:nth-child(3){
	width: 100px;
}
nav a:nth-child(3):hover~.animation{
	width: 100px;
	left: 210px;
}
nav a:nth-child(4){
	width: 160px;
}
nav a:nth-child(4):hover~.animation{
	width: 160px;
	left: 310px;
}
nav a:nth-child(5){
	width: 120px;
}
nav a:nth-child(5):hover~.animation{
	width: 120px;
	left: 470px;
}

.container {
    padding: 2rem;
}

#line {
    border-top: 1px solid black;
    margin: 10px 0;
}

footer {
    color: rgb(10, 10, 10);
    text-align: center;
    padding: 0rem;
    position: fixed;
    bottom: 0%;
    width: 100%;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    nav {
        width: 100%;
        height: auto;
        margin: 0;
        left: 0;
    }
    nav a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px;
    }
    nav .animation {
        display: none;
    }
}

