/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 2 version
*/

/*
Initial Color Palette:
    black and white gameboy with color pokemon sprites
background color: (off white) #FCFAFD, rgb(252, 250, 253)
    primary color: (grey) #3A393B
    green gameboy screen color: rgba(134, 137, 117, 0.8)


Fonts:
Text:VT323
Heading: VT323
Logo: (eventually) Pixelboy
*/

/*Universal Styling*/
:root {
    --background-color: #FCFAFD;
    --primary-color: #3A393B;
    --green: rgba(157, 160, 141, 0.9);
}

body {
    font-family: 'VT323', monospace;
    background-image: url(../src/img/background.svg);
    background-attachment: fixed;
    background-size: contain;
}

h1 {
    color: var(--primary-color);
}

p {
    text-align: center;
    color: black;
}

/*Navbar Styling*/
.snorlax {
    height: 50px;
    width: 50px;
    text-align: end;
}

#form1 {
    border: 1px solid;
}

/*Main Section Styling*/
ul {
    list-style-type: none;
}

.button {
    border: 1px solid;
    border-radius: 3px;
    background-color: var(--green);
    margin: 6px;
    width: 120px !important;
}

.button:hover {
    background-color: rgba(134, 137, 117, 0.5);
}

/*Modal Styling*/
.modal-body {
    text-align: center;
}