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

* {
    user-select: none;
}

.body {
    background-color: rgb(42, 41, 43);
    display: flex;
    flex-direction: column;
    align-content: space-between;
}

.bigDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
}

.btn {
    background-color: blueviolet;
    border: none;
    border-radius: 2rem;
    padding: 5px 15px 5px 15px;
    font-family: "JetBrains Mono", monospace;
    margin-top: 82px;
    transition: background-color 0.3s ease-in;
}

.btn:hover {
    background-color: rgb(110, 34, 180);
}

.bigH1 {
    text-align: center;
    color: rgb(231, 231, 231);
    font-family: "JetBrains Mono", monospace;
    margin: 0;
    margin-top: 25px;
    margin-bottom: 50px;
}

#datH2 {
    font-size: 48px;
    margin-top: 75px;
    font-weight: 800;
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.score {
    text-align: left;
    color: rgb(231, 231, 231);
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
    font-size: 24px;
    margin: 0;
    border-bottom: 0;
    padding-bottom: 0;
    margin-left: 20px;
}