@font-face {
    font-family: racing;
    src: url("/assets/RacingSansOne-Regular.ttf");
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: rgb(0, 0, 0);

    overflow: hidden;
}

body {
    width: 100%;
    height: 100%;

    background-size: cover;

    margin: 0;

    color: azure;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-family: racing, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h5 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.headingTitle {
    position: relative;
    text-shadow: 5px 1px 10px rgb(247, 1, 255), 5px 1px 10px rgb(255, 246, 255);
}

.text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;

    color:rgb(208, 158, 255);
}

#canv0 {
    position: absolute;

    z-index: -1;

    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;
}

.planet {
    background: rgb(255,0,0);
    background: linear-gradient(40deg, rgb(255, 0, 0) 0%, rgba(97,30,184,1) 63%, rgb(0, 68, 255) 100%);
    border-radius: 50%;

    box-shadow: 0px 0px 16px 5px rgba(212, 0, 255, 0.767), 
    inset 28px -28px 50px -3px rgb(32, 0, 87),
    inset -40px 40px 5px -30px rgb(255, 255, 255);

    width: 50vmin;
    height: 50vmin;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: rgb(255, 27, 160);

    font-size: 14vmin;

    padding: 0;
    margin: 20px;
}
.planet > * {
    margin: 0;
    padding: 0;
}

.gallery {
    border-radius: 10px;
    /* min-height: 100px; */
    background-color: aliceblue;

    display: flex;
    justify-content: center;

    border: 1px cyan solid;

    background: rgb(34,193,195);
    background: linear-gradient(0deg, rgb(96, 34, 195) 0%, rgba(0,0,0,0.16850490196078427) 100%);

    box-shadow: 0px 0px 16px 5px rgba(111, 0, 255, 0.692);

    flex-wrap: wrap;

    margin-left: 10px;
    margin-right: 10px;

    padding: 0;
}

.galleryItem {
    width: 200px;
    margin: 0px;

    text-decoration: none;

    color: black;

    display: flex;
}

.galleryItem > a {
    /* height: 100%; */
    width: 200px;

    margin: 10px;
}

img {
    width: 100%;
    height: auto;

    margin: 0px;

    filter: invert();

    transition: all 0.2s;
}

img:hover {
    filter: none;
}