*{
    box-sizing: border-box;
}
@media screen and (min-width:360px){
    
}
body{
    background-image: url('../images/forest.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    width: 100%;
    color: white;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
}
nav{
    color: aliceblue;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50px;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 10px;
}
nav h1{
    font-size: 40px;
    display: inline-block;
    padding-right: 20%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
a{
    color: rgb(0, 0, 0);
    font-size: 22px;
    text-align: right;
    padding-right: 2%;
    padding-left: 2%;
    background-color: white;
    border-radius: 50px;padding-top: 10px;padding-bottom: 10px;
}
.active{
    text-decoration: underline;
    color: rgb(255, 255, 255);
}
a:hover{
    text-decoration: underline;
    color: rgb(54, 61, 63);
}
h1{
    color: black;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 30px;
    border-radius: 20px;
    text-align: left;
    background-color: wheat;
}
h1 a{
    text-decoration: none;
    background-color: rgba(1, 9, 20, 0.486);
    text-align: left;
    color: white;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 30px;
    border-radius: 20px;
}
.copyright{
    color:white;
}
.copyright i{
    color: white;
}
.copyright i:hover{
    color: white;
}
/*CODE FOR FRESHLEX STARTS HERE*/
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    width: 250px;
    margin: auto;
    position: relative;
    transform: scale(1);
}
.gradient-circle{
    background: conic-gradient(
         rgb(133, 177, 200) 0%,
         rgb(133, 177, 200) 30%,
         rgb(182, 182, 182) 30%,
         rgb(211, 211, 211) 50%,
         rgb(113, 199, 113) 50%,
         rgb(113, 199, 113) 80%,
         rgb(212, 212, 212) 80%,
         rgb(184, 184, 184) 100%
         );
    height: 270px;
    width: 270px;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -2;
    border-radius: 50%;
}
.circle {
    background-color: #010f1c;
    height: 100%;
    width: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    z-index: -1px;
    border-radius: 50%;
}
.circle p{
    padding-top: 40%;
}
.pointer-container{
    position: absolute;
    top: -35px;
    left: 115px;
    width: 20px;
    height: 320px;
    animation: rotate 10s linear forwards infinite;
    transform-origin: bottom-center;
}
.pointer{
    background-color: white;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: block;
}
.container.grow{
    animation: grow 3s linear forwards;
}
.container.shrink{
    animation: shrink 3s linear forwards;
}
@keyframes rotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
@keyframes grow{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.2);
    }
}
@keyframes shrink{
    from{
        transform: scale(1.2);
    }
    to{
        transform: scale(1);
    }
}
#foobar{
    background-color: transparent;
}
audio{
    display: inline;
}
