/*fonts*/
@font-face {
    font-family: "Sublima";
    src: url("/fonts/Sublima.otf");
}
@font-face {
    font-family: "Roboto Mono";
    src: url("/fonts/RobotoMono.ttf");
}
@font-face {
    font-family: "OliversBarney";
    src: url("/fonts/OliversBarney.ttf");
}
@font-face {
    font-family: "Minecraft";
    src: url("/fonts/Minecraft.otf");
}

/*animations*/
@keyframes backgroundloop {
    0% {
        background-position: 0, 0, 0, 0;
    }
  
    100% {
        background-position: 20ex, 0, 0, 0;
    }
}

* {
    text-decoration: none;
    scroll-behavior: smooth;
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    background-color: rgb(10,10,10);
    min-height: 100vh;
}
::selection, ::-moz-selection {
    color: rgb(0,128,255);
    background-color: rgba(128,0,255,0.7)
}
.linebreak {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    border-top: 1px;
    border-top-style: solid;
    display: table;
    width: 100%;
}

#cheese3d {
    position: absolute;
    left: 10%;
    top: 5%;
}
#socialsContainer {
    width: 100%;
}
.sociallink {
    width: 50px;
    height: 50px;
    overflow: hidden;
    display: inline-block;
    padding: 20px;

    transition: transform 0.1s;
}
.sociallink:hover {
    transform: scale(1.1);

    transition: transform 0.1s;
}
.sociallinkcontainer {
    height: 70px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
    justify-content: center;
}

.developmentcontainer {
    display: flex;
    width: 100%;
}
.sidebysidetext {
    display: flex;
    width: 100%;
    height: 50px;
}
#galabeamdevcontainer {
    height: 70px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    vertical-align: middle;
    justify-content: center;
    width: 50%;
}
#catbeamstudioscontainer {
    height: 70px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    vertical-align: middle;
    justify-content: center;
    width: 50%;
}

a {
    color: rgb(0,128,255);
}
h1 {
    text-align: center;
    color: rgb(0,128,255);
    font-family: Sublima;
    font-weight: 1000;
    font-size: 80px;
    line-height: 80px;
    text-shadow: 5px 5px 0 rgb(0,64,128);
}
h2 {
    text-align: center;
    color: rgb(128,0,255);
    font-family: Sublima;
    font-weight: 1000;
    font-size: 40px;
    text-shadow: 4px 4px 0 rgb(64,0,128);
}
h3 {
    text-align: center;
    color: rgb(255,128,0);
    font-family: Sublima;
    font-weight: 700;
    font-size: 20px;
    text-shadow: 2px 2px 0 rgb(128,64,0);
}
p {
    text-align: center;
    color: white;
    font-family: Sublima;
    font-weight: 500;
    font-size: 40px;
}
table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}
th, td {
    text-align: center;
    color: white;
    font-family: Sublima;
    font-weight: 500;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid white;
}
.e {
    border: 0px;
}
iframe {
    border: none;
}
button {
    text-align: center;
    color: white;
    font-family: Sublima;
    font-weight: 500;
    font-size: 20px;
    border: 0;
    width: 20ex;
    height: 2em;
    user-select: none;
    cursor: pointer;
    display: block;
    margin: auto;
    border-radius: 15px;
    background: rgba(128,0,255,0.7);

    transition: transform 0.1s, background 0.2s;
}
button:hover {
    background: linear-gradient(90deg, rgba(128,0,255,0.7), rgba(168,40,255,0.7), rgba(128,0,255,0.7));
    transform: scale(1.2);
    
    animation: backgroundloop;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

    transition: transform 0.1s, background 0.2s;
}
button:active {
    background: rgba(168,40,255,0.7);

    transition: transform 0.1s, background 0.2s;
}

#fourOfour {
    font-size: 100px;
    letter-spacing: 10vw;
    text-indent: 10vw;
}

.textleft {
    width: 50%;
}
.textright {
    width: 50%;
}

.footer {
    font-size: 20px;
    color: #888888;
}

.gsc {
    width: 98vw;
}

.buttonrow {
    display: flex;
    width: 100%;
}
#gamingdiv {
    margin-top: 10vh;
    width: 100%;

    display: flex;
    flex-direction: column;
}
.serverlink {
    text-align: center;
    color: white;
    font-family: Roboto;
    font-weight: 500;
    font-size: 80px;
    cursor: pointer;
    user-select: none;
    padding-block-end: 20px;

    transition: color 0.5s, text-shadow 0.5s;
}
#gaming {
    font-family: "Sublima";
    color: rgba(128,0,0,1);
    text-shadow: 0 0 10px rgba(100,0,0,1);
}
#gaming:hover {
    color: rgba(255,0,0,1);
    text-shadow: 0 0 20px rgba(255,0,0,1);
}
/* dev.html */
.gamediv {
    padding-left: 25px;
    padding-right: 25px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 350px 1fr;
    grid-gap: 20px;
}
.gameelements {
    font-size: 20px;
    text-align: left;
    grid-row: 1/3;
}
.glow {
    box-shadow: 0px 0px 20px #f6ba00;
    z-index: 10;
}
.h1small {
    font-size: 30px;
    text-shadow: 2px 2px 0 rgb(0,64,128);
}