@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    user-select: none;
}

html {
    height: 100vh;
    height: 100svh;
    width: 100vw;
    overflow: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: center;
    padding: clamp(24px, 10vw, 64px);
    height: 100vh;
    height: 100svh;
    width: 100vw;
    flex-direction: column;
    gap: 32px;
}

h1, h2 {
    user-select: none;
    background: -webkit-linear-gradient(140deg,rgb(255, 145, 0) 0%, rgb(255, 0, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

.titleblock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.titleblock span {
    color: #666;
    text-align: center;
}

#orblesTitle {
    user-select: none;
    background: -webkit-linear-gradient(140deg,rgb(126, 199, 154) 0%, rgb(49, 141, 177) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#cryptickleTitle {
    user-select: none;
    background: -webkit-linear-gradient(140deg,rgb(155, 155, 155) 0%, rgb(0, 0, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.games {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mobile {
    display: none;
    flex-direction: column;
}

a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
    gap: 16px;
    box-shadow: 0 0 12px #aaa;
    border-radius: 12px;
    width: 180px;
    /* height: 200px; */
    display: flex;
    background: white;
    transition: 0.3s ease;

    position: relative;
    overflow: hidden;
}

a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1;
    transition: 0.3s;
    top: 0;
    left: 0;
}

a:hover::after {
    opacity: 0;
}

a img, a svg {
    width: 50%;
    z-index: 2;
}

a p {
    color: rgb(102, 102, 102);
    text-align: center;
    font-size: 0.8rem;
    z-index: 2;
}

.mobile a {
    flex-direction: row;
    width: 100%;
    padding: 16px 24px;
    column-gap: 24px;
    justify-content: space-between;
}

.mobile img, .mobile svg {
    width: 25%;
}

#orblesLink {
    background: -webkit-linear-gradient(140deg,rgb(220, 255, 233) 0%, rgb(220, 241, 250) 100%);
}

#cryptickleLink {
    background: -webkit-linear-gradient(140deg,rgb(255, 255, 255) 0%, rgb(221, 221, 221) 100%);
}

#contactLink {
    background: -webkit-linear-gradient(140deg,rgb(255, 215, 215) 0%, rgb(252, 249, 208) 100%);
}

.mobileText {
    display: flex;
    flex-direction: column;
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .desktop {
        display: none;
    }
    
    .mobile {
        display: flex;
    }
}

form {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    width: clamp(300px, 80vw, 600px);
}

form p label {
    width: 100%;
    display: flex;
    flex-direction: column;
}

form input, textarea {
    padding: 4px;
}

form p button {
    width: 100%;
    user-select: none;
    background: -webkit-linear-gradient(140deg,rgb(255, 145, 0) 0%, rgb(255, 0, 0) 100%);
    color: white;
    padding: 4px;
    border-radius: 8px;
    border: none;
    outline: none;
}