* {
    font-family: 'Museo Sans Rounded', sans-serif;
}
body {
    margin: 0;
}
#output {
    display: block;
    width: 450px;
    height: 60px;
    margin: 10vh auto 0 auto;
    border: none;
    border-radius: 20px;
    text-align: center;
    line-height: 60px;
    font-size: 1.2em;
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 15%);
    outline: none;
}
#copyAlert, #copyAlert2 {
    display: none;
    position: fixed;
    width: 200px;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    background-color: #555;
    color: #FFF;
    padding: 0;
    left: calc(50vw - 100px);
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 15%);
    border-radius: 10px;
}
#copyAlert {
    top: 25vh;
}
#copyAlert2 {
    top: 17.5vh;
}
#link, #share, #new, #viewcount {
    display: block;
    margin: 1vh auto 0 auto;
    width: 400px;
    height: 50px;
    text-align: center;
    padding: 0;
}
#link {
    border: 1px solid #999;
    width: 398px;
    height: 48px;
    outline: none;
    line-height: 50px;
    background: #FFF;
}
#viewcount {
    color: #FFF;
}
::selection {
    background: #CCC;
}
#header {
    height: 62px;
    width: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 5px 7px 0 rgb(0 0 0 / 7%);
    line-height: 62px;
    text-align: center;
    vertical-align: middle;
}
#container {
    position: fixed;
    top: 60px;
    width: 100%;
    height: 300px;
    background-image: url("./img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#containerMask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 176, 160, 0.9), rgba(4, 119, 189, 0.9) 50%, rgba(85, 69, 150, 0.9));
}
.logo {
    display: inline;
    filter: invert(75%);
    width: 100px;
    border: none;
    margin: 15px 20vw 0 0;
}
.clientInfo {
    display: block;
    max-width: 600px;
    text-align: center;
    margin: 400px auto 0 auto;
    color: #787878;
    font-size: 14px;
}
.tel {
    display: inline-block;
    text-decoration: none;
    font-size: 1.3em;
}
#output:read-only {
    background-color: #FFF;
    background-image: url("./img/padlock.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}