@font-face{
    font-family: wuum_custom;
    src: url(fonts/rounded.ttf);
}


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: wuum_custom;
}

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

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

}

.logo_image{
    justify-content: left;
    height: 7%;
    width: 7%;
    padding: 0.6rem;
    transition: 110ms;
}

.logo_image:hover{
    justify-content: left;
    height: 7%;
    width: 7%;
    padding: 0.6rem;
    transform: translateY(-5px);
    transition: 110ms;
}
nav a{
    font-family: wuum_custom;
    text-decoration: none;
    color: #ffffff;
    padding: 0 1.5rem;
}

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


.hero-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 95vh;
    padding: 3rem calc((100vw - 1300px)/2);
}


.column-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    padding: 0rem 2rem;
}

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

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

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

}

.hero-image{
    font-family:'Courier New', Courier, monospace;
    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: #283593;
    font-family: wuum_custom;
    color: white;
    height: 40px;
    width: 160px;
    border: none;
    border-radius: 4px;
    transition: 100ms;
    
}
.button1:hover{
    background-color: #3949ab;
    color: white;
    height: 50px;
    width: 170px;
    border: none;
    border-radius: 4px;
    transition: 100ms;
    
}

.button1:active {
    background-color: #182161;
    transform: translateY(12px);
    }


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

}

.sub-content{
    color: white;

}

.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;

}