<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upside Down Triangles</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
position: relative;
background-color: red;
}
.container {
position: relative;
display: inline-block;
text-align: center;
}
.triangles {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
}
.triangle {
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 16px solid white;
filter: drop-shadow(0 0 10px white);
}
.text {
font-size: 3em;
font-weight: bold;
text-transform: uppercase;
font-family: 'Oswald', sans-serif;
}
.yellow-text {
color: yellow;
}
.black-text {
color: black;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="triangles">
<div class="triangle"></div>
<div class="triangle"></div>
</div>
<div class="text">
<span class="yellow-text">Super</span><span class="black-text">normal</span>
</div>
</div>
</body>
</html>