44 lines
591 B
CSS
44 lines
591 B
CSS
h1 {
|
|
font-family: Brush Script MT;
|
|
font-size: 3em;
|
|
font-weight: bold;
|
|
background-color: #708090;
|
|
color: white;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
color: #708090;
|
|
font-family: Brush Script MT;
|
|
font-style: italic; /* schaut sonst nicht gut aus :) */
|
|
}
|
|
|
|
.div-1 {
|
|
font-size: 1em;
|
|
font-style: italic;
|
|
}
|
|
|
|
.div-2 {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.div-2 img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.div-3 h3 {
|
|
font-weight:bold;
|
|
color:#708090;
|
|
font-style: normal;
|
|
}
|
|
|
|
.textcontainer {
|
|
font-size: 1em;
|
|
}
|
|
|