* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow: hidden;
    color: #fefeff;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

canvas {
    width: 100%;
    height: 100%;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none !important;
}

.container {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeIn 2s;
    -moz-animation: fadeIn 2s;
    -webkit-animation: fadeIn 2s;
    -o-animation: fadeIn 2s;
}

.container>* {
    margin-top: 11px;
}

.container>.title {
    text-align: center;
    font-size: 3em;
}

.content>.icons-list {
    font-size: 1.7em;
    margin-left: auto;
    margin-right: auto;
    transform: translate(-0%, +30%);
    width: 200px;
    display: flex;
    justify-content: space-between;
}


.container>.clock {
    font-size: 1.3em;
    text-align: center;
}

.container>.control-button {
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}