@font-face {
    font-family: "Amplitude";
    src: url("/assets/fonts/Amplitude-Light_0.otf");
    font-weight: 300
}

@font-face {
    font-family: "Amplitude";
    src: url("/assets/fonts/Amplitude-Regular_0.otf");
    font-weight: 400
}

@font-face {
    font-family: "Amplitude";
    src: url("/assets/fonts/Amplitude-Black_0.otf");
    font-weight: 500
}

@font-face {
    font-family: "Amplitude";
    src: url("/assets/fonts/Amplitude-Bold_0.otf");
    font-weight: 700
}

/* Allgemeine Einstellungen */
body {
    font-family: "Amplitude", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}

#psheineWordleIFrame {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 16px;
    width: 100%;
    max-width: 800px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.logo {
    text-align: center;
    margin-right: auto;
}

.logo img {
    width: 50px;
    height: auto;
}

.menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-grow: 1;
}

.menu-item {
    text-align: center;
    cursor: pointer;
}

.menu-item img {
    width: 30px;
    height: auto;
    margin-bottom: 4px;
}

.menu-item div {
    font-size: 12px;
}

#scriptContainer {
    margin-top: 16px;
    width: 100%;
    text-align: center;
}

