body { width: 100vw; height: 100vh; margin: 0; background: #125589; overflow: hidden; }

.header h1 {
    color: rgba(204,65,65,1);
    margin: 0;
    font-size: 5rem;
    text-align: center;
}

.header p { 
    color: rgb(0, 0, 0);
    margin: 0;
    font-size:2.5rem;
    text-align: center;
}

.header {
    height: 300px;
    width: 100%;
    background: #0d3b5e;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    user-select: none;
}

.nameTip > p, h2 {
    user-select: none;
    margin: 0;
    white-space: nowrap;
    font-family: cursive;
}

article {
    padding: 10px 30%;
}

article > div.fix {
    display: flex;
    flex-direction: row;
    position: relative;
    margin: 10px 0px;
}

div.fix > .nameTip {
    margin-right: 10px;
    height: auto;
    display: flex;
    width: fit-content;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.codeScroll {
    position: relative;
    overflow: scroll hidden;
    background: #161b22;
    padding: 20px;
    border-radius: 5px;
    font-family: monospace;
    color: white;
    white-space: nowrap;
    display: flex;
    position: relative;
    align-items: center;
}

.copyBtn {
    cursor: pointer;
    top: 50%;
    transform: translate(0%, -60%);
    aspect-ratio: 1;
    right: 10px;
    color: #c9d1d9;
    position: absolute;
    width: 40px;
    background: #21262d;
    border-radius: 3px;
    border: 1px #c9d1d9 solid;
    height: 40px;
    transition: background 0.2s ease-in-out;
}

.copyBtn ion-icon {
    width: 100%;
    height: 100%;
}