body{
font-family:Times New Roman;
background:#84bcf5;
margin:0;
}

header{
background:#5acfe1;
color:white;
padding:20px;
text-align:center;
}

nav{
background:#333;
padding:10px;
}

nav a{
color:white;
margin:10px;
text-decoration:none;
}

.card{
background:white;
padding:20px;
margin:20px;
border-radius:10px;
box-shadow:0px 3px 8px rgba(0,0,0,0.2);
}

.form input,
.form textarea{
display:block;
margin:10px 0;
padding:8px;
width:250px;
}

button{
background:#5ae17c;
color:white;
border:none;
padding:10px;
cursor:pointer;
}

#alterList{
display:flex;
flex-wrap:wrap;
gap:20px;
}

.alterCard{
background:white;
padding:15px;
border-radius:10px;
width:250px;
box-shadow:0px 3px 8px rgba(0,0,0,0.2);
}

.alterCard img{
width:100%;
border-radius:8px;
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:20px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0px 3px 8px rgba(0,0,0,0.2);
}

#alterDashboard{
display:flex;
flex-wrap:wrap;
gap:20px;
padding:20px;
}

.alterCard{
width:220px;
border-radius:10px;
padding:15px;
color:white;
}

.alterCard button{
margin-top:10px;
}