body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.background {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    background-image: url('./bg.png');
    align-items: center;
    min-height: 100vh;
}

.logo {
    width: 20vw;
    height: 20vw;
    margin: 2vh 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoImg {
    width: 100%;
    height: 100%;
}

.poster {
    width: 30vh;
    height: 40vh;
    border-radius: 2vw;
    border: 2px solid rgba(128, 128, 128, 0.5);
}

#posterImg {
    width: 100%;
    height: 100%;
}

.title {
    color: red;
    font-style: italic;
}

.text {
    width: 96%;
    display: -webkit-box;
    color: whitesmoke;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.pc-button {
    margin: 50px 30px 0 30px;
}
.pc-button img {
    width: 15rem;
    height: 5.3125rem;
}
.android-content {
    display: flex;
    justify-content: center;
    padding: 1.25rem;
    position: absolute;
    bottom: 2vh;
}
.android-button {
    display: block;
    margin: 0 10px;
}

.android-button img {
    width: 100%;
}
.bottom {
    width: 96%;
    margin-left: 2%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 2vh;
    margin-bottom: 1vh;
    border-radius: 2vw;
    background-color: rgba(255, 192, 203, 0.3);
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    bottom: 2vh;
    text-align: center;
}

button {
    width: 24%;
    height: 4vh;
    background-image: linear-gradient(to right, red, orange);
    border-radius: 3vw;
    color: white;
    font-size: 1rem;
    font-family: 'Arial Rounded MT Bold', sans-serif;
    border: none;
}
.download {
    display: flex;
    justify-content: center;
    padding: 1.25rem;
}
/* Media query for desktop */
@media (min-width: 769px) {
    .logo {
        width: 10vw;
        height: 10vw;
        margin: 2vh 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bottom {
        display: none;
    }
    .android-button {
        display: none;
    }
}

/* Media query for mobile */
@media (max-width: 768px) {
    .pc-button {
        display: none;
    }
    .android-button{
        display: block;
        margin: 0 10px;
    }
    .android-button img {
        width: 100%;
    }
}