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

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: #272727;
    color: white;
    font-family: Roobert, "Noto Sans", Roboto, sans-serif;
    height: 100%;
    width: 100%;
}

.playdate-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.playdate {
    background-color: #ffc500;
    width: 50vw;
    min-width: 350px;
    max-width: 31em;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 1em;
}

.playdate-screen {
    width: 85%;
    margin: 2em;
    margin-left: 2px;
    margin-top: 2px;
    aspect-ratio: 5/3;
    text-align: center;
    background-color: #bdbdbd;
    color: #353131;
    border-radius: 1em;
    border: 1em black solid;
    overflow: hidden;
}

footer {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 5em;
    bottom: 0;
    left: 0;
}

.login-button {
    transition: 0.2s;
    background-color: #3c3c3c;
    color: white;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 10px;
    padding: 1em;
    font-size: 1em;
}

.login-button:disabled {
    background-color: #131313;
    color: gray

}

.login-button:hover {
    transition: 0.2s;
    background-color: #5865f2;
    box-shadow: #5865f2 0px 0px 20px;
}

.login-button:disabled:hover {
    cursor: not-allowed;
    transition: 0.2s;
    background-color: #131313;
}

.discord-logo {
    margin-right: 1em;
    width: 2em;
}