@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

* {
    box-sizing: border-box;
}

html, body, h1 {
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Poiret One', sans-serif;
}

body {
    background-color: #000;
}

html, body {
    height: 100%;
}

#mainmenu {
    width: 100%;
    height: 100%;
    display: grid;
    gap: 16px;
    align-content: center;
    justify-items: center;
}

#blackhole {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #000;
    box-shadow: #FFFCF1 0px 0px 150px, #FFFCF1 0px 0px 150px, #FFFCF1 2px 2px 20px -15px inset;
    transition: background-color 1s, box-shadow 1s;
}

#blackhole:hover {
    background-color: #FCE570;
  box-shadow: #FC9F70 -5px -5px 60px, #FCE570 5px 5px 60px, #FC9F70 10px 10px 20px inset;
}

h1 {
    color: #fff;
    opacity: 20%;
}

.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noSelect:focus {
    outline: none !important;
}