/*
Farger:
orange: EE7A52
white: FAF9EF
yellow: F8DF52
green:C4B341
blue: 223071
*/
/*
header h1 nav ul li a
main
section .bulbasaur #grass
article img p
section .charmander #fire
section .squirtle #water
*/
*{
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
    text-align: center;

}
header{
    height: 20vh;
    background-color: #ee7152;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100svw;
    margin-bottom: 10px;
}
ul{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    width: 30svw;
}
h1{
    font-size: 70px;
}
a{
    text-decoration: none;
    color: black;
}
a:hover{
    cursor: pointer;
    color: white;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/*Base styling for all sections*/
section{
    display: flex;
    flex-direction: row;
    width: 80svw;
    padding: 10px;
    justify-content: space-between;
}
img{
    height: 150px;
}
p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    font-weight: 500;
}
/*Styling for individual types*/
#grass{
    background-color: green;
    border: orange 5px dotted;

}
#fire{
    background-color: orange;
    border: blue 5px double;
}
#water{
    background-color: lightblue;
    border: green 5px dashed;
}
#bug{
    background-color: lightgreen;
    border: pink 5px outset;
}
#normal{
    background-color: grey;
    border: purple 5px inset;
}
#electric{
    background-color: yellow;
    border: grey 5px dotted;
}