*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}
.container{
    width: 400px;
    height: 35vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    perspective: 500px;
}

.logo{
    width: 300px;
    height: 230px;
    background: url(IMGS/Heretics.cl.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 150px;
    filter: drop-shadows(0px 7px 21px #ff0000);
    animation: rotar 5s linear infinite;

}
.logo:hover{
    cursor: pointer;
    }
@keyframes rotar{
    from{
        transform: rotateY(180deg);
    }
        to{
            transform: rotateY(-180deg);
        }

}
.bottom_part{
    width: 20rem;
    height: 20rem;
    position: absolute;
    bottom: -94px;
    background-color: black;
    border-radius: 50%;
    box-shadow: 0px 0px 15px 15px #11111136;
    border:outset;
    border-color: #fa4c07fb;
    transform: rotateX(90deg);
    display: flex;
    justify-content: center;
    align-items: center;

}

.bottom_part::before{
    content: "";
    width: 16rem;
    height: 16rem;
    position: absolute;
    bottom: 5rem;
    background: #ff000059;
    border-radius: 50%;
    box-shadow: inset 0px 0px 10px 10px #11111136;
    filter: blur(30px);
}
@media screen and (max-width: 800px)
    .body
        flex-direction: column;
        max-width: 90%;
        margin: 0, auto, 0;
        box-sizing: border box;
    }
@media screen and (max-width: 600px)
    .body
        flex-direction: column;
        max-width: 90%;
        margin: 0, auto, 0;
        box-sizing: border box;
    }
    @media screen and (max-width: 400px)
     body{
        flex-direction: column;
        max-width: 90%;
        margin: 0, auto, 0;
        box-sizing: border box;
    }