@import url('https://fonts.googleapis.com/css2?family=Anta&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
    --main-color: #B64EF1 ;
    --accent-color: #FFFF51;
    --background-color: #F1BFFD;
}
* {
    font-family: "Quantico", sans-serif;
}
body {
    padding: 0px;
    margin: 0px;
    background-color: var(--background-color);
}
header {
    background-color: var(--main-color);
    width: 10vw;
    height: 10vw;
    position: fixed;
    top: 5vh;
    left: 2vw;
    border-radius: 1vw;
}
header > img {
    height: 10vw;
    
}
.page-title {
    text-align: center;
    margin: 12vh;
}
#games {
    margin-left: 12vw;
    margin-right: 12vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3vw;
}
.game {
    background-color: var(--main-color);
    border-radius: 4vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 2vh;
    aspect-ratio: 1/1;
}
.game > img {
    max-height: 20vh;
    max-width: 10vw;
    border-radius: 2vh;
}
#games > a {
    color: black;
    text-decoration: none;
}
.game > a:visited {
    color: black;
    text-decoration: none;
}
button {
    background-color: var(--main-color);
    padding: 3vh;
    border-radius: 3vh;
    text-align: center;
    justify-self: center;
    border: none;   
}
#cookie-clicker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items:  start;
}
#cookie-clicker-rechts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#cookie-clicker-rechts > button, #cookie-clicker-rechts > details {
    margin: 3vh;
}
#cookie-img {
    height: 40vh;
    cursor: pointer;
}
#cookie-count {
    font-size: 5vh;
}
#cookie-clicker-skin-selection {
    background-color: var(--main-color);
    border-radius: 3vh;
    text-align: center;
    width: fit-content;
    margin: auto;
}
summary {
    padding: 3vh;
    box-sizing: border-box;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
#cookie-clicker-skin-selection > div {
    display: flex;
    flex-direction: column;
}
#cookie-clicker-skin-selection > div > button {
    background-color: var(--background-color);
    margin: 2vh;
}
#cookie-clicker-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 70vh;
}
#secret-button {
    position: fixed;
    height: 30px;
    width: 30px;
    left: 0px;
    bottom: 0px;
    border-radius: 0px;
    padding: 0px;
    background-color: var(--background-color);
}