﻿.floating-image {
    position: fixed;
    bottom: 10px; /* Adjust this value to position the image vertically */
    right: 10px; /* Adjust this value to position the image horizontally */
    width: 70px; /* Adjust the width of the image */
    height: auto; /* Maintain aspect ratio */
    z-index: 999; /* Ensure the image is on top of other content */
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake-button {
    display: inline-block;
    overflow: hidden; /* Ensure the image doesn't overflow its container */
}

    .shake-button img {
        max-width: 100%; /* Ensure the image doesn't exceed its container */
        transition: transform 0.3s ease;
    }

    /* Apply the animation on hover */
    .shake-button:hover img {
        animation: shake 0.5s ease infinite;
    }

/*.downloads-section {
    padding: 20px;
}*/

.download-header-p{
    margin-top:15px;
  
}

p{
    font-size:16px;
}

.download-button {
    background-color: dodgerblue;
    border-radius: 2px;
    color: rgb(255,255,255);
    outline: none;
    border: none;
    width: 90%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 20px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
}

.video-container {
    overflow: hidden;
    position: relative;
    /* width: 100%; If you want an image to scale down if it has to, 
        but never scale up to be larger than its original size, 
        use max-width: 100%:*/
    max-width: 100%;
}

    .video-container::after {
        padding-top: 56.25%;
        display: block;
        content: '';
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


.responsive {
    max-width: 100%;
    height: auto;
}


img {
    margin-bottom: 12px;
}

ul {
    padding: 0px;
  
}

.button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 25px;
    margin: 4px 2px;
    cursor: pointer;
}

.button3 {
    background-color: rgb(90,61,235);
    border-radius: 4px;
    color: rgb(255,255,255);
    font-size: 16px;
    font-weight: 500;
    border: 0;
    padding: 1em;
}

.button2 {
    
}

.button1 {
    background-color: mediumpurple;
}

.button4 {
    background-color: forestgreen;
}



.video-container {
    overflow: hidden;
    position: relative;
    /* width: 100%; If you want an image to scale down if it has to, but never scale up to be larger than its original size, use max-width: 100%:*/
    max-width: 100%;
}

    .video-container::after {
        padding-top: 56.25%;
        display: block;
        content: '';
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.responsive {
    max-width: 100%;
    height: auto;
}

.ul-downloads {
    padding: 2em;
}

li{
    font-size:16px;
}

@media screen and (min-width:370px){
    .download-button {
        font-size: 20px;
        
    }
}

@media screen and (min-width:400px) {
    .download-button {
        font-size: 22px;
    }
}

@media screen and (min-width:450px){
/*    .downloads-section{
        padding:25px;
    }*/
    .download-button{
        width:90%;
    }
}

@media screen and (min-width:500px) {
/*    .downloads-section {
        padding: 25px;
    }*/
    .download-button{
        width:76%;
    }
}

@media screen and (min-width:600px) {
/*    .downloads-section {
        padding: 30px;
    }*/

    .download-button {
        width: 76%;
    }
}

@media screen and (min-width:750px) {
    .downloads-section {
        padding: 40px;
    }

    .download-button {
        width: 56%;
        padding:22px 35px;
    }
}

@media screen and (min-width:900px) {
    .downloads-section {
        padding: 40px;
    }

    .download-button {
        width: 46%;
    }

    .video-container{
        width:60%
    }


}

@media screen and (min-width:1000px) {
    .downloads-section {
        padding: 50px;
    }

    .download-button {
        width: 42%;
    }

    .video-container {
        width: 60%
    }
}

@media screen and (min-width:1100px) {
    .downloads-section {
        padding: 60px;
    }

    .download-button {
        width: 38%;
    }

    .video-container {
        width: 70%
    }
}

@media screen and (min-width:1200px) {
    .downloads-section {
        padding: 60px 80px;
    }

    .download-button {
        width: 40%;
        font-size: 25px;
    }

    .video-container {
        width: 70%
    }
}

@media screen and (min-width:1300px) {

    .video-container {
        width: 60%
    }
    .download-button{
        width:37%;
        padding:25px 35px;
        font-size:25px;
    }
}

@media screen and (min-width:1400px) {
    p{
        width:70%;
    }
/*    li{
        width:70%;
    }*/
    .download-button {
        width: 37%;
        font-size:26px;
        padding:28px 35px;
    }
}

@media screen and (min-width:1500px) {

    .download-button {
        width: 32%;
    }
    .video-container {
        width: 60%
    }
}

@media screen and (min-width:1600px) {

    .download-button {
        width: 30%;
    }
    .video-container {
        width: 60%
    }
}



