44 lines
588 B
CSS
44 lines
588 B
CSS
body {
|
|
margin: 0;
|
|
text-align: justify;
|
|
text-justify: inter-word;
|
|
background-image: url("../images/background.png");
|
|
background-size: 100%;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.body-content {
|
|
background-color: white;
|
|
padding-top: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 90px;
|
|
}
|
|
h2 {
|
|
font-size: 50px;
|
|
}
|
|
|
|
a {
|
|
color: #727282;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#about-map {
|
|
z-index: 1;
|
|
width: 100%;
|
|
height: 450px;
|
|
}
|
|
|
|
footer {
|
|
position: fixed;
|
|
z-index: 2;
|
|
bottom: 0;
|
|
width: 100%;
|
|
} |