@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
* {
    box-sizing: border-box;
}

body {
    background: #224941 url('../images/Zen-background.jpg') no-repeat center center/cover;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 200px;
    width: 200px;
    position: relative;
    transform: scale(1);
}

strong {
    color: rgb(165, 177, 177);
    font-size: 12px;
}

audio {
    border: none;
    outline: none;
}

.audioplay-button {
    color: rgb(146, 155, 155);
}

#background__music {
    border: none;
    padding: 16px;
    margin: 10px;
}

.circle {
    background: url('../images/zenIcon.jpg') no-repeat center center/cover;
    background-color: #010f1c;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#text {
    color: #010f1c;
    position: absolute;
    top: 166px;
    width: fit-content;
    font-size: small;
}

.gradient-circle {
    background: conic-gradient( #55b7a4 0%, #4ca493 40%, rgb(44, 15, 15) 40%, #fff 60%, #336d62 60%, #2a5b52 100%);
    height: 220px;
    width: 220px;
    z-index: -2;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
}

.pointer {
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    height: 14px;
    width: 14px;
    display: block;
}

.pointer-container {
    position: absolute;
    top: -40px;
    left: 86px;
    width: 20px;
    height: 140px;
    animation: rotate 7.5s linear forwards infinite;
    transform-origin: bottom center;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container.grow {
    animation: grow 3s linear forwards;
}

@keyframes grow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

.container.shrink {
    animation: shrink 3s linear forwards;
}

@keyframes shrink {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}


/* Navbar style  */

.bottomMenu #left {
    position: relative;
    left: 10%;
}

.bottomMenu #left img {
    float: left;
}

.bottomMenu #center {
    margin: 0 auto;
}

.bottomMenu #center img {
    display: block;
    margin: 0 auto;
}

.bottomMenu #right {
    position: relative;
    right: 10%;
}

.bottomMenu #right img {
    float: right;
}