You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
702 B

/* styles.css */
body {
/*font-family: Arial, sans-serif;*/
font-family: Bitstream Vera Sans;
margin: 0;
padding: 0;
/*box-sizing: border-box;*/
}
header {
display: flex;
justify-content: center;
padding: 1em 2em;
background-color: #ffffff;
/*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
font-weight: bold;
font-size: 1em;
}
nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
nav ul li {
margin-left: 2em;
}
nav ul li a {
text-decoration: none;
color: #1f1f1f;
transition: color 0.3s;
}
nav ul li a:hover {
color: #007bff;
}
#home {
/*
background-image: url(images/baniere.jpeg);
background-repeat: no-repeat;*/
height: 200px;
}