momo.coop/index.html

142 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Momo eG</title>
<style>
* {
box-sizing: border-box;
}
html {
font-size: 3vh;
font-weight: 800;
font-style: italic;
}
@media (min-width: 800px) {
html {
font-size: 4vh;
}
}
body {
margin: 0;
padding: 0;
font-family: Source Sans Pro, Open Sans, sans-serif;
color: white;
display: flex;
flex-direction: column;
}
main {
padding: 1rem;
display: flex;
flex-direction: column;
width: 100%;
height: auto;
min-height: 100vh;
background: radial-gradient(farthest-corner at -5% -5%, rgb(255, 0, 200) 0%, rgb(230, 0, 67) 100%);
}
.logo {
text-align: right;
}
.realness {
display: block;
margin-left: 2rem;
}
@media (min-width: 800px) {
.realness {
display: inline;
margin-left: 0rem;
}
}
h1 {
font-size: 2rem;
line-height: 1;
font-weight: 800;
font-style: normal;
}
@media (min-width: 800px) {
h1 {
margin-bottom: 2rem;
}
}
@media (min-width: 800px) {
p {
max-width: 1200px;
margin-top: 0;
}
}
footer {
margin-top: auto;
}
@media (min-width: 800px) {
footer {
margin-top: 1rem;
}
}
a {
word-wrap: break-word;
line-break: normal;
color: white;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.feather {
display: inline-block;
vertical-align: sub;
margin-right: 0.5rem;
width: 1rem;
height: 1rem;
}
</style>
</head>
<body>
<main>
<div class="logo">
Momo eG
</div>
<h1>&lt;&gt; <span class="realness">IT ain't easy</span> &lt;/&gt;</h1>
<p>
We are a collective of professionals from around the field of IT. We are currently in the process of founding a German cooperative (e.G.).
</p>
<p>
We are here to help you plan, design, develop, and operate solutions in the information technology space.
</p>
<footer>
<p>
<a href="mailto:everyone@list.momo.koeln">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-mail"
>
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>everyone@list.momo.koeln
</a>
</p>
</footer>
</main>
</body>
</html>