*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hidden{
    display: none;
}
.screen{
    min-height: 100vh;
    width: 100%;
    background-color: #000;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    font-size: 15px;
}
.screen a{
    color: #ccc;
}
input,
select, 
option{
    padding: 5px;
}
#string{
    width: 100%;
}
.message{
    text-align: center;
    padding: 20px;
    max-width: 1000px;
    font-size: 20px;
    transition: all 500ms ease-out;
    font-family: Helvetica, Arial, sans-serif;
}
.message[data-fontsize="xs"]{
    font-size: 8px;
}
.message[data-fontsize="small"]{
    font-size: 14px;
}
.message[data-fontsize="normal"]{
    font-size: 22px;
}
.message[data-fontsize="large"]{
    font-size: 60px;
    line-height: 1.1;
}
.message[data-fontsize="xl"]{
    font-size: 90px;
    line-height: 1.1;
}
.message[data-fontsize="xxl"]{
    font-size: 180px;
    line-height: 1;
}
.message[data-urgent="urgent"]{
    animation: urgent 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}
@keyframes urgent {
    0% {color: #fff;}
    50% {color: #e35583;}
    100% {color: #fff;}
}
.form-item{
    margin-top: 10px;
}
.more{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
}
.morelink{
    font-size: 15px;
    opacity: 0.6;
    position: relative;
    padding: 15px 60px 15px 0;
    transition: all 500ms ease;
    cursor: pointer;
}
.morelink:hover, 
.openmenu .morelink{
    opacity: 1;
}
.morelink > span{
    display: block;
}
.morewrap{
    position: absolute;
    width: 220px;
    padding: 20px;
    right: -250px;
    transition: all 500ms ease;
    top: 50px;
    background-color: #111;
}
.openmenu .morewrap{
    right: 0;
}
.navicon{
    transition: all 500ms linear;
    width: 50px;
    height: 50px;
    overflow: hidden;
    z-index: 100;
    position: absolute;
    top: 0;
    right: 5px;
}
.navicon::before,
.navicon::after{
  content: " ";
}
.navicon::before,
.navicon::after,
.navicon span{
  position: absolute;
  display: block;
  left: 20%;
  background-color: #fff;
  width: 60%;
  height: 4%;
  transition: all 300ms ease-out;
}
.navicon::before{
  top: 22%;
}
.navicon span{
  top: 45%;
}
.navicon::after{
  top: 68%;
}
.openmenu .navicon::after,
.openmenu .navicon::before{
  top: 25%;
  left: 47%;
  width: 4%;
  height: 50%;
  transform: rotate(45deg);
  transform-origin: center center;
  background-color: #fff;
}
.openmenu .navicon::after{
  transform: rotate(-45deg);
}
.openmenu .navicon::before{
  transform: rotate(45deg);
}
.openmenu .navicon span{
  width: 0;
  background-color: #fff;
}
.navicon:hover{
  opacity: 1;
}


@media (max-width: 540px){
    .message[data-fontsize="small"]{
        font-size: 12px;
    }
    .message[data-fontsize="normal"]{
        font-size: 18px;
    }
    .message[data-fontsize="large"]{
        font-size: 40px;
        line-height: 1.1;
    }
    .message[data-fontsize="xl"]{
        font-size: 60px;
        line-height: 1.1;
    }
    .message[data-fontsize="xxl"]{
        font-size: 80px;
        line-height: 1;
    }
}