102 lines
2.3 KiB
HTML
102 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Br0tcraft</title>
|
|
|
|
<style>
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url("/fonts/Roboto/Roboto-Regular.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Orbitron";
|
|
src: url("/fonts/Orbitron/Orbitron-Black.ttf");
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Orbitron";
|
|
}
|
|
|
|
.header-container {
|
|
position: relative;
|
|
height: 80vh;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.header-image {
|
|
width: 100%;
|
|
object-fit: cover;
|
|
filter: brightness(0.5);
|
|
}
|
|
|
|
.Phrasen {
|
|
position: absolute;
|
|
bottom: 5%; /* Ändere den Wert nach Bedarf */
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
color: white;
|
|
font-size: 1vw; /* Ändere den Wert nach Bedarf */
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.container {
|
|
position: absolute;
|
|
right: 32px;
|
|
left: 32px;
|
|
top: 16px;
|
|
font-family: Orbitron;
|
|
font-size: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
z-index: 1;
|
|
}
|
|
|
|
.logo {
|
|
width: calc(15% * 2);
|
|
}
|
|
|
|
.menu-link {
|
|
color: white;
|
|
text-decoration: none;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.menu-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.headline {
|
|
text-align: center;
|
|
color: rgb(0, 0, 0);
|
|
font-size: 40px;
|
|
text-shadow: 5px 5px 3px rgba(5, 0, 0, 0.26);
|
|
margin-top: 20px; /* Füge einen Abstand zum Text darunter hinzu */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header-container">
|
|
<img class="header-image" src="img/Redstone.png" />
|
|
<div class="Phrasen">
|
|
<h1>Programming, exploring, trying</h1>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<img src="img/Logo.png" class="logo" />
|
|
<div>
|
|
<a class="menu-link" href="">Home</a>
|
|
<a class="menu-link" href="">Kontakt</a>
|
|
<a class="menu-link" href="">Spiele</a>
|
|
</div>
|
|
</div>
|
|
<h1 class="headline">Meine Werke</h1>
|
|
</body>
|
|
</html>
|