* {
    box-sizing: border-box;
}

body {
    margin:0;
    background-image: url("background.png");
    background-repeat: no-repeat;
    background-size:contain;
}

img {
    max-width:100;
}

.container {
    height: 50vh;
    display: flex;
    align-items:center;
    justify-content: space-evenly;
    position: relative;
    overflow:hidden;
}

.disc1 {
    animation: spin 6s infinite linear;
}

.disc2 {
    animation: spin2 6s infinite linear;
}

.disc3 {
    animation: spin 6s infinite linear;
}

.container2 {
    height: 50vh;
    display: flex;
    align-items:center;
    justify-content: space-evenly;
    position: relative;
    overflow:hidden;
}

.disc4 {
    animation: spin2 6s infinite linear;
}

.disc5 {
    animation: spin 6s infinite linear;
}

.disc6 {
    animation: spin2 6s infinite linear;
}

@keyframes spin {
    0% {
        transform:rotate(0);
    }
    100% {
        transform:rotate(360deg);
    }
}

@keyframes spin2 {
    0% {
        transform:rotate(360deg);
    }
    100% {
        transform:rotate(0);
    }
}

.bar {
    background: rgba(48, 48, 48, 0.57);
    width:100px;
    height:10px;
    position: absolute;
    left:-100;
    bottom:0;
    animation: move 180s infinite linear;
}

@keyframes move {
    0% {
        transform:scaleX(0);
        left:-50px;
    }
    100% {
        transform: scaleX(28);
    }
}
