xxxxxxxxxx
72
html, body {
margin: 0;
padding: 0;
}
/* Menu */
#nav {
position: sticky;
top: 0;
display: flex;
justify-content: space-between;
background-color: #ededed;
margin: 0;
border-bottom: 1px #d1d1d1 solid;
padding: 25px;
}
#nav ul {
margin: 0;
padding: 5px;
list-style-type: none;
display: flex;
justify-content: space-between;
}
#nav ul li {
padding: 0 16px;
}
#nav ul li a {
font-family: monospace;
font-size: 16px;
text-decoration: none;
color: black;
}
#nav ul li a:hover{
color: darkgray;
}
#logo {
font-family: sans-serif;
font-weight: 900;
font-size: 20px;
}
/* Content */
#content {
margin: 60px 10%;
}
.text {
padding: 0 20% 0 5%;
font-family: serif;
font-size: 1.2em;
line-height: 1.4em;
letter-spacing: auto;
}
.text p {
padding: 0 0 15px 0;
}
.images {
margin: 40px 0;
}
.images img {
width: 100%;
}