#pokedex {
    position: relative;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#front {
    /* height: 100%; */
    width: 100%;
    height: auto;
    /* object-fit: contain; */
    display: block;
}

#cover {
    animation: open 3s ease-out 1s forwards;
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

#textbox {
    position: absolute;
    top: 28%;
    left: 19%;
    background-color: transparent;
    font-size: clamp(2px, 2vw, 15px);
    text-align: center;
    width: 51%;
    height: 21%;
}

#open-modal-button {
    position: absolute;
    border: none;
    background-color: transparent;
    color: var(--primary-yellow);
    font-size: clamp(8px, 15px, 15px);
    width: 31%;
    height: 11%;
    top: 68%;
    left: 22%;
    cursor: pointer;
}

#modal_screen {
    display: none;
    text-align: center;
    position: absolute;
    padding: auto 10px;
    font-size: 15px;
    width: 80%;
    max-height: 100%;
    top: -2em;
    overflow: scroll;
    border-radius: 5px;
    border: 1px outset white;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#modal-close {
    border: 1px outset rgb(238, 191, 140);
    border-radius: 5px;
    padding: 5px 20px;
    background-color: var(--primary-orange);
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    cursor: pointer;
    margin: 20px auto 40px auto;
}

#picture {
    width: 50%;
}
