body {
		background-image: url('rack.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;    
	
	font-family: "SF Mono", Menlo, monospace;

    background-color: #2e2e2e;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}
header {
    padding: 40px 20px;
}
.logo {
    width: 100px;
    height: 100px;
    <!-- border-radius: 50%; -->
}
.construction {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
    color: #ffcc66;
}
h1 {
    font-size: 2.5em;
    margin: 10px 0;
}
h2 {
    margin-top: 30px;
    font-size: 1.8em;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    margin: 10px 0;
}
a {
    color: #66b3ff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
footer {
    background-color: #1c1c1c;
    padding: 20px;
    margin-top: 30px;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
