Files
2024-07-20 11:46:10 +02:00

53 lines
912 B
CSS

.punch-dark {
color: #F8FAFC;
background-color: #222;
}
.punch-clear {
color: #222;
background-color: #F8FAFC;
}
.punch-container {
display: flex;
justify-content: center;
align-items: center;
height: 400px;
background-image: url('/resources/img/logo_notext.png');
background-repeat: no-repeat;
background-position: calc(50% - 250px);
transition: background-color 0.5s;
}
.punch-sub {
display: flex;
flex-direction: column;
align-items: center;
}
.punch {
font-family: 'Mona-Sans';
font-weight: 300;
font-size: 3vmin;
margin: 0;
max-width: 900px;
text-align: center;
}
.punch-quote-container {
width: 50px;
}
.punch-quote-right {
position: relative;
bottom: -120px;
margin-right: 10px;
}
.punch-quote-left {
position: relative;
top: -120px;
transform: rotate(180deg);
margin-left: 10px;
}