@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

html, body {
    height: 99%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url(images/Background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.window {
    border: solid;
    width: 500px;
    height: 300px;
    border-radius: 16px;
    padding: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(3px);
    background-color: rgba(200, 200, 200, 0.01);
}

#note {
    width: 390px;
    height: 500px;
}

#note-input {
    margin-top: 16px;
    resize: none;
    box-sizing: border-box;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #1c1c1c;
    outline: none;
    padding: 5px;
}

.bar {
    font-family: 'Space Grotesk', sans-serif;
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    margin: 10px auto;
    padding: 0 60px;

    align-items: center;

    color: #101212;

    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#top-bar {
    top: 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.2);
    max-width: 500px;
}

#bottom-bar {
    bottom: 0;
    padding: 10px;
    backdrop-filter: blur(6px);
    background-color: rgba(60, 60, 60, 0.2);
    max-width: 300px;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

#top-bar p:first-child {
    justify-self: start;
}

#top-bar h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 1px;
}

#top-bar p:last-child {
    justify-self: end;
}

#rpss {
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

#rpss .close {
    cursor: pointer;
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 5px;
    border-color: black;
    top: 7px;
    position: fixed;
    right: 10px;
}

#rpss .close:hover {
    background-color: rgba(255, 0, 0, 0.75);
}

#rpss h2 {
    margin: 16px 0 30px;
}

#rpss #result {
    margin: 0 0 30px;
}

#rpss .rps-buttons {
    display: flex;
    gap: 15px;
}

#rpss .rps-buttons button {
    width: 70px;
    height: 60px;
    font-size: 28px;
    padding: 0;
    border-radius: 15px;
    cursor: pointer;
}

#rpss #score {
    margin: 30px 0 0;
}

.close {
    cursor: pointer;
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 5px;
    border-color: black;
    top: 7px;
    position: fixed;
    right: 10px;
}

.close:hover {
    background-color: rgba(255, 0, 0, 0.75);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

.logo-button {
    position: relative;
}

.logo-button span {
    display: none;
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(2px);
    background: rgba(30, 30, 30, 0.5);
    color: white;
    border-radius: 5px;
    font-size: 15px;
    padding: 6px;
    white-space: nowrap;
}

.logo-button:hover span {
    display: block;
}