@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Press+Start+2P&display=swap');
html {
    height: 100%;
    margin: 0;
    padding: 0;
    background: url(./images/cityscape.jpg);
    font-family: 'Press Start 2P', cursive;
}

body {
    margin: auto;
    height:100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
}

#outer {
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: midnightblue;
    align-content:center;
    width: 320px;
    height: 640px;
    margin: 0px;
    padding: 0px;
    border: 16px black solid;
    box-shadow: 24px 24px rgba(57,0,82,0.4);
} 
#blur {
    position: fixed;
    bottom: 150px;
    height: 100px;
    width: fit-content;
    max-width: 320px;
    background-color: #333333;
    border: #32CD32 4px solid;
    color: #32CD32;
    display: block;
    padding: 10px;
    text-align: center;
}

#splash, #game, #win, #game-over {
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    
}

h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    text-align: center;
    color: limegreen;
    text-shadow: 10px 5px black; 
    margin: 10px 0px;
    padding: 0;
}

h2 { 
    font-family: 'Press Start 2P';
    color: limegreen;
    text-shadow: 10px 5px black; 
    font-size: 2em;
    font-weight: lighter;
}

p {
    color: white;
    font-weight: lighter;
    text-align: center;
    font-size: 16px;
    padding: 0px 0px;
    margin: 0px;
    margin-top: 20px;
}

#kitty {
    max-width: 50%;

}
#album {
    margin: 20px;
    max-width: 50%;
} 

#albumlink {
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: fit-content;
}
#crying-cat {
    width: 70%;
    max-width: 300px;
    margin: 20px 0px;
    margin-top: -30px;
    padding: 0px;
    border: none;
    background-color: none;


}



.btn {
    text-align: center;
    width: 50%;
    max-width: 300px;
    border: none;
    color:black;
    font-family: 'Press Start 2P';
    background-color: limegreen;
    box-shadow: 10px 5px black;
    padding: 12px;
    margin: 20px;
}

footer {
    margin: 5px;
    font-size: 0.9em;
    color: white;
    font-family: 'Lobster';
    text-align: center;    
    justify-self: flex-end;
}

footer a{
    text-decoration: none;
    color: limegreen;
    text-align: center;
}

a:active {
    position: relative;
    top: 2px;
    left: 2px;
}