body {
    display: grid;
    background-image: linear-gradient(149deg, rgb(18, 212, 222) 0%, rgb(0, 145, 255) 100%);
    justify-content: center;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.title {
    font-size: 65px;
    -webkit-text-stroke: 2px white;
}

input {
    background-color: rgb(21, 128, 216);
    color: white;
    font-size: 15px;
    border: 2px rgb(5, 226, 208) solid;
    border-radius: 15px;
    padding: 3px;
    text-align: center;
    transition: 0.2s ease-out;
}

.big {
    font-size: xx-large;
}

.big:hover {
    font-size: 50px;
}

input:hover {
    background-color: rgb(160, 230, 255);
    color: black;
    font-size: 20px;
}

input:focus {
    background-color: rgb(160, 230, 255);
    color: black;
    font-size: 20px;
}

hr {
    visibility: hidden;
}

.show {
    visibility: visible;
}

textarea {
    background-color: rgb(21, 128, 216);
    color: white;
    font-size: 15px;
    border: 2px rgb(5, 226, 208) solid;
    border-radius: 15px;
    padding: 3px;
    text-align: center;
    transition: 0.2s ease-out;
}

textarea:hover {
    background-color: rgb(160, 230, 255);
    color: black;
    font-size: 20px;
}

textarea:focus {
    background-color: rgb(160, 230, 255);
    color: black;
    font-size: 20px;
}

.save {
    font-size: x-large;
    width: 100px;
    padding: 5px;
    border: 3px rgb(222, 86, 19) solid;
    background-color: rgb(23, 209, 125);
    border-radius: 15px;
    transition: 0.2s ease-out;
    justify-self: center;
}

.save:hover {
    font-size: xx-large;
    background-color: rgb(23, 159, 205);
    color: black;
}

.long {
    width: 300px;
}

.print {
    background-color: rgba(255, 255, 255, 0.555);
    border-radius: 15px;    
}

.selector {
    background-color: rgba(14, 243, 79, 0.45);
    padding: 10px;
    border-radius: 15px;
    display: none;
}

#mobile {
    display: none;
}

#desktop {
    display: none;
}

#iphone {
    display: none;
}

#android {
    display: none;
}

.device {
    background-color: rgba(255, 255, 255, 0.542);
    padding: 5px;
    border-radius: 15px;
}

.subtitle {
    font-size: large;
}

.color {
    border: none;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.465);
    padding: 8px;
    transition: 0.3s ease-out;
    color: black;
}

.color:hover {
    background-color: rgba(255, 255, 255, 0.665);
}

@media print {
    .print {
        background-color: white;
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        margin: 0;
        padding: 15px;
        font-size: 14px;
        line-height: 18px;
    }
    .rest {
        display: none;
    }

    body {
        background-image: linear-gradient(149deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    }

    .title {
        display: none;
    }
}