*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

nav {
    height: 80px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0rem calc((100vw - 1300px)/2);
}

.nav_buttons{
    background: none;
    border: none;
    color: white;
}

.logo{
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.2rem;

}

.logo_image{
    justify-content: center;
    padding-top: 0.3rem;
    height: 3%;
    width: 3%;
    transition: 110ms;
}

nav a{
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #ffffff;
    padding: 0 1.5rem;
}

nav a:hover{
    text-decoration: none;
    color: #eeeeee;
    padding: 0 1.5rem;
}

.button_box{
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 95vh;
    padding: 3rem calc((100vw - 1300px)/2);
    margin: 1rem;
}


.column-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    gap: 5px;
    flex-wrap: wrap;
    
}

.column-left h1{
    margin-bottom: 1rem;
    font-size: 6rem;
}

.column-left p{
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
}

.subtitle{
    color:#7ffcaf;
}

.column-right{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 2rem;

}


.hero-image{
    font-family:Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    color: #eeeeee;
    align-items: center;
    justify-content: center;
    display: flex;
}

@media screen and (max-width: 768px) {
    .hero-container{
        grid-template-columns: 1fr;
    }
}


.button1{
    background-color: transparent;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8pt;
    color: white;
    height: 40px;
    width: 160px;
    border: 1px solid white;
    border-radius: 4px;
    transition: 100ms;
    
}
.button1:hover{
    color: white;
    height: 40px;
    width: 170px;
    transition: 100ms;
    
}

.button1:active {
    transform: translateY(5px);
    }


.sub-div{
    display: grid;
    justify-content: center;
    padding-bottom: 1.5rem;

}

.sub-content{
    font-size: 8pt;
    color: #bcbcbc65;

}

.download-hero{
    display: grid;
    justify-content: center;
    height: 95vh;
    padding: 3rem calc((100vw - 1300px)/2);
}


.download-div{
    width: 25rem;
    height: 15rem;
    padding: 2rem;
    background-color:rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding-top: 1rem;

}

.item-div{
    background-color: #3949ab;
    border-radius: 4px;
    padding: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    height: 3rem;
    transition: 200ms;
    box-shadow: 0px 5px 10px #9e9e9e;
}

.item-div:Hover{
    background-color: #353849;
    border-radius: 4px;
    padding: 0.9rem;
    transition: 200ms;
    transform: scale(1.05);
    
}

.item-div a{
    text-decoration: none;
    color: white;
}

.download-title{
    padding: 1.2rem;
    color: #212121;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;

}

.gradient-background {
    background: linear-gradient(288deg,#000000,#2a04e3,#8b045c,#d00284);
    background-size: 240% 240%;
    animation: gradient-animation 24s ease infinite;
  }
  
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

