html,body {
    margin:0;
    padding: 0px;
    height: 100%;
    background:cornflowerblue;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.bec-main {
    width:530px;
    height: 350px;
    background: rgb(80,160,80);
    border-radius: 40px;

    align-items: center;

    box-shadow: 0px -60px 0px -15px rgb(210,220,200),0px -70px 0px -1px rgb(237,234,227);
}

.bec-shadow {
    width: 90%;
    height: 94%;
    background:rgba(0,0,0,0.1);
    border-radius: 40px;
    position: relative;
    top:10px;
}

.bec-sub {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10%;
    height: 20%;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.between {
    justify-content: space-between;
}

.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-block {
    height: 100%;
}

.logo {
    font-family: 'Bangers', cursive;
    color:white;
    font-size: 30px;
}

.switch-block {
    color: white;
    font-size: 22px;
}

.switch-sub-block {
    display: table-cell;
    height: 100%;
}

.switch-sub-block span {
    vertical-align: middle;
}

.switch {
    width:60px;
    display: inline-block;
    background-color:rgba(0,0,0,0.3);
    height: 30px;
}

.switch-name {
    position: relative;
    top:1px;
}

#switch {
    display: none;
}

label {
    margin: 0px 5px;
}
label::after {
    content: "";
    display: block;
    background-color: black;
    height: 100%;
    width: 30px;
    transition: all .2s ease-out;
}

#switch:checked+.container label::after {
    transform: translateX(30px);
}

.foot-container {
    width: 400px;
}

.foot {
    width: 30px;
    height: 5px;
    background: black;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1;
}

.shadow {
    width: 530px;
    height: 50px;
    background:radial-gradient(ellipse closest-side, rgba(32,32,32,0.5) 0%, rgba(32,32,32,0.0) 100% );
    position: relative;
    top:-20px;
}

@keyframes move {
    0% { transform:translateY(0px); }
  100% { transform:translateY(-100px); }
}
#switch:checked+.container .brc {
    animation: move 1s ease-in-out infinite alternate;
}


@keyframes move-shadow {
    0% { 
    }
  100% { 
        width:360px;
        height: 30px; 
    }
}
#switch:checked+.container .shadow {
    animation: move-shadow 1s ease-in-out infinite alternate;
}