body {
    background-image: url("../assets/back3.jpg") !important;
}

/* Home background video */

#homebackvideo {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

/* New video */


#newvideo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-top: 10%;
}

#newvideo video {
    border: 3px solid white;
    margin-top: 2%;
    display: flex;
    justify-content: center;
    width: 50%;
}

#newvideo h1 {
    font-size: 250%;
    color: goldenrod;
    text-align: center;
    -webkit-text-stroke: 1px black;
}

#newvideo .container {
    overflow: hidden;
    margin-left: 0%;
    margin-top: 5%;
    height: 20%;
    width: 40%;
    vertical-align: top;
    border: none;
}

#newvideo .container img {
    width: 100%;
    transition: 0.5s all ease-in-out;
}

#newvideo .container img:hover {
    transform: scale(1.5);
}

main .link {
    margin-top: 5%;
    position: relative;
    display: flex;
    justify-content: center;
}

main .link {
    display: inline-block;
    position: relative;
    color: white;
    padding: 3%;
    text-decoration: none;
}

main .link:hover {
    color: gold;
    cursor: pointer;
}

main .link:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: gold;
  transform-origin: bottom right;
  transition: transform 0.25s ease-in-out;
  
}

main .link:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}





/* Present */

#present {
    flex-direction: row;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 5%;
    background-image: url("assets/back2.jpg");
    background-color: none;
    -webkit-text-stroke: .75px black;
}

.container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
    width: 30%;
}


#homevideo {
    height: 30%;
    width: 100%;
    margin-top: 5%;
    position: static;
    display: block;
}

#learnyoga {
    color: white;
    position: static;
    text-align: center;
    font-size: 200%;
}

#slogan {
    color: white;
    position: static;
    font-style: italic;
    margin-bottom: 108%;
    font-size: 200%;
}

#lyricstitle {
    color: white;
    position: static;
}

#shiva {
    position: static;
    animation-name: slowentry;
    animation-duration: 2s;
    overflow: hidden;
    height: 50%;
    display: none;
}

#shivalyrics {
    font-size: 150%;
    animation: slowentry ease-in-out 2s; 
    color: black;
    -webkit-text-stroke: white 0.1px;
    position: static;
    white-space: pre-wrap;
    display: block;
}

@keyframes slowentry {
    0% {opacity: 0;}
    50% {opacity: 0.50;}
    75% {opacity: 0.75;}
    100% {opacity: 1;}
}

#yogalink {
    position: static;
    text-decoration: none;
    width: 20%;
    border: 1px solid yellow;
    background-color: transparent;
    text-align: center;
    margin-top: 5%;
}

#yogalink:hover {
    position: static;
    text-decoration: none;
    width: 20%;
    border: 1px solid yellow;
    background-color: black;
    text-align: center;
    margin-top: 5%;
}

#yogalink a{
    text-decoration: none;
    color: white;
    -webkit-text-stroke: .75px black;
    font-weight: bold;
}

#truthlink {
    position: static;
    text-decoration: none;
    width: 30%;
    border: 1px solid yellow;
    background-color: transparent;
    text-align: center;
    margin-top: 5%;
}

#truthlink:hover {
    position: static;
    text-decoration: none;
    width: 30%;
    border: 1px solid yellow;
    background-color: black;
    text-align: center;
    margin-top: 5%;
}

#truthlink a{
    text-decoration: none;
    color: white;
    -webkit-text-stroke: .75px black;
    font-weight: bold;
}

#nexteventp {
    -webkit-text-stroke: 0.2px white;
}
  
  
/*
#cookiewarning {
    width: 30%;
    height: 20%;
    border-radius: 10%;
    background-color: orange;
    color: black;
    display: none;
    z-index: 2;
    position: fixed;
    border: 2px solid black;
    animation: opacity 2s;
    left: 35%;
    bottom: 2%;
    margin: 0;
    padding: 0;
}

@keyframes opacity {
    from {opacity: 0%;}
    to {opacity: 100%;}
}

#warningcontainer {
    display: flex;
    justify-content: center;
    align-self: center;
}

#warningcontainer p {
   margin-bottom: none;
   margin-top: none;
}

/* Mobile design */

@media (max-width: 800px) {
    .container {
        width: 90%;
        margin-left: 0%;
    }
    #shiva {
        width: 80%;
        display: block;
    }
    #shivalyrics {
        width: 95%;
        text-align: center;
        font-size: 80%;
        white-space: pre-wrap;
        justify-content: center;
        display: block;
        margin-left: -10%;
    }
    #yogalink {
        width: 40% !important;
    }
    #truthlink {
        width: 40% !important;
        margin-left: 0;
    }
    #newvideo video {
        width: 70%;
    }
    iframe {
        width: 80%;
    }
    #homevideo {
        z-index: -1;
    }
    #newvideo .container {
        width: 80% !important;
        margin-top: 5%;
        padding: 5%;
    }
    #homebackvideo {
        display: none;
    }
    #slogan {
        margin-bottom: 5% !important;
        margin-top: 10%;
    }
    #nexteventp br {
        display: none;
    }
}