-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (129 loc) · 4.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VicTofSpel - Spelletjes voor Iedereen!</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
html, body {
height: 100%; /* Make sure the body takes the full height */
margin: 0;
padding: 0;
overflow: hidden; /* Prevent scrolling */
}
body {
font-family: 'Poppins', sans-serif;
background-image: url('james_webb_picture.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
color: #f0f0f0;
display: flex; /* Use flexbox for centering content */
flex-direction: column; /* Stack items vertically */
justify-content: center; /* Center content vertically */
align-items: center; /* Center content horizontally */
}
/* Dark overlay to make text readable while showing the background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Dark overlay to make the text readable */
z-index: -1; /* Place behind content */
}
header {
padding: 20px;
color: #00d1ff; /* Neon Cyan */
font-size: 3em;
text-shadow: 0px 0px 15px rgba(0, 209, 255, 0.8);
letter-spacing: 2px;
animation: glow 2s infinite ease-in-out;
}
@keyframes glow {
0%, 100% {
text-shadow: 0 0 10px #00d1ff, 0 0 20px #00d1ff, 0 0 30px #00d1ff;
}
50% {
text-shadow: 0 0 20px #00d1ff, 0 0 30px #00d1ff, 0 0 40px #00d1ff;
}
}
section {
margin: 20px auto;
max-width: 1200px;
background-color: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 15px;
box-shadow: 0 0 30px rgba(0, 209, 255, 0.2);
display: flex; /* Use flexbox to arrange elements */
flex-direction: column; /* Stack elements vertically */
align-items: center; /* Center elements */
justify-content: center; /* Center elements */
}
h2 {
font-size: 2.5em;
color: #e0aaff; /* Neon Purple */
text-shadow: 0px 0px 10px rgba(224, 170, 255, 0.8);
}
p {
font-size: 1.5em;
color: #d1d1d1;
}
iframe {
width: 800px;
height: 600px;
border: none;
box-shadow: 0 10px 40px rgba(0, 209, 255, 0.5);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
iframe:hover {
transform: scale(1.05);
box-shadow: 0 15px 50px rgba(0, 209, 255, 0.8);
}
button {
background-color: #6100ff; /* Neon Blue */
border: none;
padding: 15px 30px;
font-size: 1.2em;
color: white;
cursor: pointer;
border-radius: 30px;
margin-top: 20px;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 0 20px rgba(97, 0, 255, 0.6);
}
button:hover {
background-color: #00d1ff;
box-shadow: 0 0 30px rgba(0, 209, 255, 0.8);
}
footer {
margin-top: 40px;
color: #00d1ff;
padding: 20px 0;
font-size: 1.2em;
text-shadow: 0px 0px 5px rgba(0, 209, 255, 0.8);
}
</style>
</head>
<body>
<header>
Welkom op VicTofSpel!
</header>
<section>
<h2>Speel hier onze coole spelletjes!</h2>
<p>Klik hieronder om het eerste spel te starten:</p>
<!-- Ingebedde Scratch-game -->
<iframe src="https://scratch.mit.edu/projects/1074837999/embed" allowtransparency="true" frameborder="0" scrolling="no" allowfullscreen></iframe>
<br>
<!-- Button voor meer spelletjes -->
<button onclick="alert('Meer spelletjes komen binnenkort, kom zeker terug!')">Meer Spelletjes</button>
</section>
<footer>
© 2024 VicTofSpel - Spelletjes voor iedereen!
</footer>
</body>
</html>