@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8f9faf5;
    user-select: none;
}

input {
    padding: 16px;
    border: #000 0.5px solid;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

#reward-choice {
    width: 200px;
    height: 40px;
    font-size: 16px;
    margin-right: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    border: 1px solid #000;
    border-radius: 8px;
}

.oneline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.oneline span {
    margin: 0 8px;
}

.oneline h3 {
    margin: 0 16px;
}

#header {
    background-image: linear-gradient(-48deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#header img {
    cursor: pointer;
    margin-right: 20px;
}

#header b {
    background-image: linear-gradient(38deg, #48ff00, #00ffd5, #002bff);
    -webkit-text-stroke: 1px black;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#header a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
}

#header a:hover {
    text-decoration: underline;
}

#teacher-login {
    background-image: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    color: white;
    border: 1px solid #000;
    padding: 30px 60px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    font-size: 4em;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
}

#teacher-login:hover {
    filter: drop-shadow(0 0 50px #000);
}

#teacher-login-text {
    font-size: 3em;
    position: relative;
    left: 30%;
    bottom: 30px;
}

#student-dashboard {
    display: none;
    text-align: center;
}