@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --color-primary: #4A90E2;
    --color-secondary: #50E3C2;
    --color-background: #0a0a0a;
    --color-text: #12df64;
    --color-border: #12d360;
    --font: 'Instrument Sans', sans-serif;
}

body {
    background-color: var(--color-background);
    font-family: var(--font);
    text-align: center;
}

h1 {
    color: var(--color-text);
}

h2 {
    color: var(--color-primary);
}

h3, h4, h5, h6 {
    color: var(--color-text);
}

input {
    background-color: var(--color-background);
    color: #fff;
    padding: 10px;
    border: 1px var(--color-border) solid;
    border-radius: 10px;
    font-family: var(--font);
}

button {
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-family: var(--font);
    cursor: pointer;
}

.button-wrapper {
    border: 1px var(--color-border) solid;
    border-radius: 24px;
    width: 300px;
    height: 300px;
    cursor: pointer;
    margin-top: 32px;
}

.button-wrapper:hover {
    border: 1px var(--color-secondary) solid;
}

.button-wrapper > * {
    position: relative;
    top: 16px;
}

#kahootWrapper {
    position: fixed;
    left: 25%;
}
/*
#blooketWrapper {
    position: fixed;
    right: 25%;
}*/