* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    color: inherit;
}

body {
    background-image: linear-gradient(120deg, #4f0088 0%, #000000 100%);
    height: 100vh;
}

div#rootPage {
    background: rgba(0, 0, 0, 0);
    width: 70vw;
    position: relative;
    top: 260px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto;
    padding: 15px 22px 10px;
    box-shadow: 0 0 150px -20px rgba(0, 0, 0, 0.5);
    z-index: 3;
    border-radius: 8px;
}

div#mac-menubar::before {
    content: "";
    display: inline-block;
    text-align: left;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fd6458;
    box-shadow: 20px 0 0 #ffbf2b, 40px 0 0 #24cc3d;
}

div#slice-render{
    margin-top: 16px;
}

P {
    font-family: "Share Tech Mono", monospace;
    color: #f5f5f5;
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.2;
}

span {
    color: #f0c674;
}

i {
    color: #8abeb7;
}

div a {
    text-decoration: none;
}
b {
    color: #81a2be;
}

.terminal-link{
    word-break: break-word;
}
.continue-go{
    display: inline-block;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    color: #F56C6C;
}
#inputDownloadCode{
    border: none;
    outline: none;
    background: transparent;
    color: #499eff;
    text-indent: 6px;
}
#inputDownloadCode:focus{
    border: none;
}

div.avatar {
    position: fixed;
    bottom: 30px;
    right: -170px;
    -webkit-animation: slide 0.5s 4.5s forwards;
    animation: slide 0.5s 4.5s forwards;
    z-index: 4
}

div.avatar img {
    border-radius: 50%;
    width: 62px;
    height: 62px;
    border: 2px solid white;
}

@-webkit-keyframes slide {
    from {
        right: -170px;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        opacity: 0;
    }

    to {
        right: 30px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes slide {
    from {
        right: -170px;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        opacity: 0;
    }

    to {
        right: 30px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }
}

@media screen and (max-width: 520px) {
    div#rootPage {
        background: rgba(0, 0, 0, 0);
        width: 92%;
        position: relative;
        top: 360px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin: 0 auto;
        padding: 30px 30px 10px;
        box-shadow: 0 0 150px -20px rgba(0, 0, 0, 0.5);
        z-index: 3;
    }
}