@import url('https://fonts.googleapis.com/css?family=Nunito');

:root {
    --bg: rgb(255, 255, 255);

    --light-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);

    --text: rgb(40, 40, 40);
    --text-accent: rgb(60, 85, 85);

    --input-bg: rgb(240, 240, 240);
    --input-hover-bg: rgb(230, 230, 230);
    --input-opposite-bg: rgb(220, 220, 220);
}

html {
    font-family: 'Nunito', sans-serif;
    scroll-behavior: smooth;
    color: var(--text);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
}

#logo {
    background: url(./logo.png) no-repeat center center;
    background-size: contain;
    height: 100%;
    width: 300px;
}

#top-menu {
    height: 70px;
    border-bottom: 1px solid grey;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#menu-bar {
    display: grid;
    height: 30px;
    padding-top: 0;
    margin-top: 0;
}

#poem-prompt, #story-prompt, #picture-prompt {
    padding: 10px;
}

#poem-options, #story-options, #picture-options {
    text-align: center;
    min-height: 50px;
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    margin: 10px;
    padding: 5px;
}

#poem {
    text-align: center;
    width: 100%
}

#story {
    text-align: center;
    width: 100%
}

#picture {
    text-align: center;
    width: 100%;
}

#story-go, #poem-go, #picture-go {
    width: 100px;
    border-radius: 5px;
    margin: 5px;
}

#story-go:hover, #poem-go:hover, #picture-go:hover {
    width: 110px;
    background-color: #b3b3b3;
}

.button {
    border: none;
    font-size: 15px;
    padding: 4px;
}

#report-bugs-container {
    display: flex;
    font-size: 12px;
    margin: 3px;
}

#copy-link-button {
    border: none;
}

#copy-link-button:hover {
    transform: scale(1.1);
}

#copy-link-container {
    display: flex;
    align-items: center;
}
