@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

// HTML5 display-role reset for older browsers
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100vw;
  font-family: Arial;
  font-size: 16px;
  text-align: center;
  line-height: normal;
  overflow-x: hidden;
  color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(45deg, #D4145A, #FBB03B);
}

h1 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}

h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.subtitle {
  font-style: italic;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.material-icons.domain {
  font-size: 100px;
  color: #333;
}

.material-icons.contact {
  font-size: 40px;
  margin-top: 40px;
}

a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  cursor: pointer;
}

a:hover {
  color: #333;
}

footer {
  display: flex;
  justify-content: center;
  width: 100vw;
  padding: 20px;
  font-size: 12px;
  color: #333;
}

footer a {
  margin-left: 20px;
  color: #333;
}

footer a:hover {
  color: #fff;
}

.imprint {
  margin: 40px;
  max-width: 800px;
}

#contact-info {
  margin-bottom: 40px;
}

.contact p {
  font-size: 14px;
}

.domains {
  width: 50%;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: auto;
}

a.domain {
  font-size: 16px;
  margin: 10px;
  padding: 5px 15px 5px 15px;
  color: #333;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  transition: color 0.3s;
}
a.domain:hover {
  background-color: #fff;;
}