* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-image: url("/Project4/i/pb2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #FA4355;
    
    
}

header {
    text-align: center;
    display: flexbox;
}

#heading {
    text-align: center;
}

#maincontain {
    text-align: center;
}

h1 {
    font-size:  25pt;
    color: white;
}

form {
    margin: 1rem;
    font-size: 15pt;
}

div {
    margin: 2rem
}

section {
    margin: 1rem;
}

label {
    font-size: 15pt;
    color: white;
}

.titlepic{
    width: 327px;
    height: 100px;
}

button{
    background-color: #FFCB05;
    border-radius: 50%;
    padding: .5rem;
    box-shadow: 2px 2px #000000b7;
}

#box1,#box2,#box3 {
    justify-content: center;
    justify-self: center;
    border: 5pt solid #FFCB05;
    border-radius: 5%;
    padding: 1rem;
    background-color: #154681fb;
    box-shadow: 5px 5px #000000b7;
    color: white;
}

#typepic1,#typepic2,#typepic3 {
    width: 100px;
    height: 100px;
}

#poke1,#poke2,#poke3{
    display: block;
    text-transform: capitalize;
}

.type1,.type2,.type3{
    text-transform: capitalize;
}

#pokepic1,#pokepic2,#pokepic3{
    height: 200px;
    width: 200px;
}

.hide {
    display: none;
}

@media screen and (min-width: 800px) {
    #maincontain {
        display: grid;
        grid-template-columns: repeat(12,1fr);
        grid-template-rows: auto;
    }

    body{
        background-image: url("/Project4/i/pb3c.jpg");
        background-size: cover;
    }

    #box1{
        grid-column: 3/5;
    }
    
    #box2{
        grid-column: 6/8;
    }
    #box3{
        grid-column: 9/11;
    }


}