:root {
    --primary-font-family: 'Inter', sans-serif;
    --secondary-font-fanily: 'Poppins', sans-serif;
    --font-weight-heading: 700;
    --font-weight-article: 400;
    --dark-color-text: #2b2b2b;
    --light-color-text: #fff;
    --accent-color-text: #253C90;
    --primary-color-background: linear-gradient(0deg, rgb(255, 234, 0) 0%, rgba(247, 143, 0, 1) 90%);
    --secondary-color-background: #fff
}

body {
    font-family: var(--primary-font-family);
    font-weight: var(--font-weight-article);
    color: var(--dark-color-text);
    line-height: 1.6;
    background: var(--primary-color-background);
    background-attachment: scroll
}

nav {
    background-color: #f88f00
}

.form-control {
    border: 1.5px solid var(--accent-color-text)
}

.btn-outline-success {
    background: var(--accent-color-text);
    border-color: var(--accent-color-text);
    color: var(--light-color-text)
}

h1,
h2,
h3,
h4 {
    font-family: var(--secondary-font-fanily);
    font-weight: var(--font-weight-heading);
    color: var(--accent-color-text)
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 26px
}

h3 {
    font-size: 20;
    color: red
}

.header-logo {
    width: 90px
}

.pokemon-list__item {
    background: var(--secondary-color-background);
    border: 3px solid var(--accent-color-text);
    border-radius: 25px
}

.pokemon__image {
    height: 150px
}

.pokemon-details__button {
    background: var(--accent-color-text);
    color: var(--light-color-text);
    border: none
}

.modal-dialog {
    max-width: 850px
}

.modal-content {
    padding: 15px;
    border: 3px solid var(--accent-color-text);
    border-radius: 25px
}

.page-footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 30px
}

.page-footer a {
    text-decoration: none;
    margin: 0 10px
}