$size: 8;
body {
background: #000;
color: #bfffa5;
font-family: 'CSS Mono';
margin: 0;
}
.container {
height: auto;
left: 50%;
min-width: 400px;
opacity: 1;
overflow: hidden;
position: fixed;
top: 50%;
transform: translate(-50%, -50%) scale(1);
width: auto;
z-index: 1;
.char {
line-height: 0.1;
max-height: $size + px;
max-height: $size + px;
max-width: $size + px;
min-width: $size + px;
text-align: center;
}
}
.button {
background-color: white;
color: black;
font-size: $size + px;
left: 50%;
padding: $size / 8 + px $size / 2 + px;
position: fixed;
text-align: center;
top: 50%;
transform: translate(-50%, -50%);
transition: all 0s ease;
z-index: 99;
&:hover {
cursor: pointer;
transform: translate(-50%, -50%) scale(1.5);
}
}
main {
font-size: 2rem;
margin: 0 auto;
max-width: 800px;
width : 60%;
}
h1 {
font-size: 1.7em;
line-height: 1.8em;
margin-top: 3em;
text-align: center;
}
p {
-webkit-margin-after: 1em;
-webkit-margin-before: 1em;
-webkit-margin-end: 0px;
-webkit-margin-start: 0px;
}
@media all and (max-width: 1000px) {
h1 {
font-size: 10vw;
}
main {
font-size: 1.6rem;
}
}