@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700");
*{
    font-family: "Montserrat", sans-serif;
}
body{
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
    background: linear-gradient(to right, #74ebd5, #acb6e5);
    overflow: none;
}

.wrapper{
    height: 100%;
    width: 100%;
    display: flex;
       
    flex-wrap: wrap;
    justify-content: center;
}
.head{
    position: relative;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height:100%;
    margin: 10px 0px;
    padding:10px 0px;
}
.head span{
    
    letter-spacing: 10px;
    font-size: 35px;
    font-weight: 400;
}
a{
    text-decoration: none;
    color:black;
}
a:visited{
    color:black;
    text-decoration: none;
}

nav{
    position: absolute;
    padding: 30px 10px 0px 10px;
    background-color: transparent;
    font-size:20px;
    left:1.5%;
    width:150px;
    display:flex;
    
}
li{
    font-family: Arial, Helvetica, sans-serif;
    list-style: none;
    text-wrap: nowrap;
    margin-right:20px;
    border:1px solid black;
    padding:8px;
    border-radius:25px;
    font-weight:500;
}

.pokedex{
    background-color: navy;
    color:white;
}
a{
    text-decoration: none;
    color:black;
}