*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    border: 2px solid salmon;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(31, 31, 31);
}

.container{
    /* border: 2px solid yellow; */
    height: 400px;
    width: 50vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    perspective: 500px;
}

.logo{
    /* border: 2px solid palegreen; */
    width: 300px;
    height: 230px;
    background: url(img/logo_SM.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 10px;
    filter: drop-shadow(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{
    /* border: 2px solid darkcyan; */
    width: 20rem;
    height: 20rem;
    position: absolute;
    bottom: -94px;
    background: #242424;
    border-radius: 50%;
    box-shadow: inset 0px 0px 10px 10px #11111136;
    transform: rotateX(90deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom_part::before{
    /* border: 2px solid mediumaquamarine; */
    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);
}