@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Secular+One&display=swap');

body {
    background-color: black;
    overflow: hidden;
}

main::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 80vw;
    background: linear-gradient(-233deg, #000 21%, rgba(0, 0, 0, 0) 65%) no-repeat;
}

.character {
    display: none;
    height: 100vh;
}

.character.selected {
    display: block;
}

.img-character {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: absolute;
    top: 0;
    left: 121px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    max-width: 381px;
    z-index: 1;
}

.character-name {
    color: white;
    font-size: 49px;
    font-family: 'Secular One';
    font-weight: 400;
    margin-bottom: 21px;
}

.description {
    color: white;
    font-family: 'Rubik';
    font-size: 17px;
    line-height: 25px;
}

.logo {
    background-image: url('../images/one-piece-logo.png');
    background-size: cover;
    height: 101px;
    width: 231px;
    margin-bottom: 35px;
}

.buttons {
    position: fixed;
    top: 0px;
    right: 0;
    padding: 31px;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    justify-content: flex-start;
    gap: 19px;
    width: 181px;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    overflow: auto;
}

.buttons::-webkit-scrollbar{
    display: none;
}

.button {
    border: none;
    background: black;
    cursor: pointer;
    border-radius: 50%;
    
}

.button img {
    border-radius: 50%;
}

.button.selected {
    transform: scale(1.2);
    box-shadow: 0 0 10px #D9D9D9;
}