html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #0E1A1F;
    font-family: 'Roboto Mono';
}

.full-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
    align-items: center;
}

h1 {
    margin: 0;
    font-size: 28px;
}

h2 {
    font-size: 20px;
}

h3{
    margin-bottom: 0;
}

.d-none{
    display: none;
}

.overflow-hidden{
    overflow: hidden;
}

.max-width{
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

header {
    background-color: #082029;
    color: white;
    height: 100px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-left: 50px;
    padding-right: 50px;
}

.logo-div{
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-div img{
    width: 50px;
}

#search_button{
    width: 100px;
    padding: 5px;
    border-radius: 30px;
    color: white;
    background-color: transparent;
    border-style: solid;
    border-color: #7fffd4;
}

#search_button:hover {
    cursor: pointer;
    background-color: #3a9073;
    transition: all 100ms ease-in-out;
}

#search_input{
    height: 25px;
    border-color: #3a9073;
}

#poke_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.poke-card {
    width: 250px;
    background-color: #0c303d;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    border-radius: 20px;
}

.poke-img-div:hover img{
    cursor: pointer;
    transform: scale(1.025);
    filter: drop-shadow(8px 8px 15px #000000);
}

.poke-img-div {
    background-color: aquamarine;
}

.poke-img {
    width: 250px;
    filter: drop-shadow(8px 8px 11px #000000);
}

.type-icon{
    width: 30px;
    height: 30px;
}

.type-icon:hover {
    cursor: pointer;
}

.poke-card-footer {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.load-button {
    width: 150px;
    max-height: 50px;
    padding: 15px;
    border-radius: 30px;
    color: white;
    background-color: transparent;
    border-style: groove;
    border-color: #7fffd4;
}

.load-button:hover {
    cursor: pointer;
    background-color: #3a9073;
    transition: all 100ms ease-in-out;
}

.loading-spinner{
    height: 25px;
}

footer {
    background-color: #082029;
    height: 100px;
}