body {
    overflow-x: hidden;
}

p {
    margin: 0.2rem 1rem;
}

.aboutme_bg {
    opacity: 0.3;
    position: fixed;
    height: 100%;
}

.foreground_image {
    position: fixed;
    width: 100vw;
    pointer-events: none;
}

.aboutme_section {
    margin-top: 6rem;
    width: 1100px;
    align-self: center;
    display: flex;
    flex-direction: row;
}

.aboutme_container {
    margin: auto;
}

.aboutme_info {
    display: flex;
    flex-direction: column;
}

.aboutme_left {
    position: relative;
    left: 5%;
}

.aboutme_right {
    position: relative;
    right: -15%;
}

.aboutme_portrait {
    width: 24rem;
}

.likes_list {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    font-weight: 700;
    justify-content: center;
    padding: 1rem 0;
    margin: 4rem 0;
}

.like {
    transition: 0.2s;
    text-shadow: 1px 1px 1px hsl(0, 0%, 11%);
}

.like:hover {
    transform: scale(1.1);
    color: var(--bg);
    text-shadow: 3px 3px 5px hsl(0, 0%, 11%);
}

.likes_list.likes {
    background-color: hsl(118, 80%, 50%);
}

.likes_list.dislikes {
    background-color: hsl(0, 77%, 47%);
}

.media_title {
    text-align: center;
}

.media_row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
}

.media_row.bottom {
    margin-bottom: 6rem;
}

.media_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.media_content_row {
    display: flex;
    flex-direction: row;
}

.media_image {
    width: 10rem;
    margin: 1rem;
    transition: 0.2s;
}

.media_image:hover {
    transform: scale(1.3);
}

.pokemon_section {
    position: relative;
}

.pokemon_section.hidden {
    display: none;
}

.pokemon_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    cursor: grab;
    user-select: none;
    z-index: 2;
    transition: 0.33s;
    padding: 0;

}

.pokemon_container:hover {
    transform: scale(1.1) rotate(14deg);
    filter: brightness(1.2);

}

.pokemon_container.dragging {
    cursor: grabbing;
    z-index: 9999;
}


.pokemon_img {
    width: 10rem;
    height: 10rem;
    pointer-events: none;
}

.toggle-btn {
    position: fixed;
    top: 2rem;
    left: 85vw;
    border: none;
    border-radius: 0.5rem;
    background-color: hsl(242, 60%, 40%);
    color: var(--txt);
    cursor: pointer;
    transition: 0.2s;
    z-index: 10;
}

.toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 2px var(--bg);
}