body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #C0C0C0;
	border-radius: 10px
    color: #222;
}

header {
	position: relative;
    background-color: #808080;
    color: white;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
}

.back-button {
    position: absolute;
    bottom: 10px;   /* distanță față de partea de jos */
    left: 10px;     /* distanță față de partea stângă */
    font-size: 18px;
    color: #303030;
    text-decoration: none;
    font-weight: bold;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.hero-image img {
    width: 100%;
	height: 750px;;
    border-radius: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    margin: 10px;
    background-color: white;
    border-radius: 8px;
}

h1, h2 {
    color: #303030;
}

ul {
    list-style: square;
    padding-left: 20px;
}


footer {
	font-size: 12px;  /* sau orice dimensiune vrei */
    text-align: center;
    background-color: #e1fdfe;
    color: #3a020d;
    padding: 10px;
    margin-top: 10px;
}