* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
html{
    height: 100%;
    background: linear-gradient(to right, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    height: 300px;
    width: 500px;
    padding: 0 10px;
}
.wrapper__heading{
    color: #fff;
    font-size: 1.3em;
    line-height: 1.5em;
}
.wrapper__tutorialText{
    font-style: italic;
    color: #fff;
}
.tutorialText__href, .tutorialText__href:visited{
    text-decoration: none;
    color: #ffb52c;
}
.wrapper__input{
    border-radius: 11px 0 0 11px; 
    border: none;
    height: 40px;
    cursor: default;
    width: 90%;
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #8f8f8f;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
    outline: none;
}
.wrapper__copyButton{
    height: 40px;
    width: 10%;
    background: #65c8e9;
    border: none;
    border-radius: 0 11px 11px 0;
    transition: background .4s ease-in-out;
    outline: none;
}
.wrapper__copyButton:hover{
    cursor: pointer;
    background: #37b2db;
}
.wrapper__copyWrapper{
    display: flex;
    margin: 20px 0;
}
.wrapper__imageWrapper{
    height: 100px;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.wrapper__image{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.copyButton__icon{
    color: #fff;
    font-size: 20px;
}