35 lines
523 B
CSS
35 lines
523 B
CSS
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
background-image: url("../images/Clouds.png");
|
|
background-size: cover;
|
|
background-position: left;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.navbar {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
color: #fff;
|
|
padding: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.nav-link {
|
|
color: #fff;
|
|
margin-right: 1rem;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.title-section {
|
|
height: 400;
|
|
}
|
|
|
|
.about-section {
|
|
padding: 2rem;
|
|
color: #fff;
|
|
margin-top: 2rem;
|
|
}
|