* {
    margin: 0;
    border: 0;
    padding: 0;
    /* INNER BORDER */
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /* ANTI-SELECT */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* ANTI-DRAG */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

html {
    height: 100%;
    display: flex;
}

html,
body {
    background: #282f39;
}

body,
main {
    flex: 1;
    display: flex;
}

main {
    width: 50%;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

main p {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: x-large;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif, monospace;
    color: whitesmoke;
}

footer {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
}

footer a {
    border-radius: 50%;
    display: flex;
}

footer a img {
    width: 40px !important;
}