body {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    background-color: rgb(10, 10, 10);
}

.header{
    width: 100%;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
    top: 0;
    position:fixed;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.364);
}

.heroSection {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../Images/ANN.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    background-color: rgba(0, 0, 0, 0.023);
}

.innerDiv {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    box-sizing: border-box;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heroSectionTitle {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    text-align: left;
    padding: 10%;
}

.header-text {
    font-size: 4vw;
}

.paragraph-text {
    font-size: 2vw;
}

.container {
    width: 100%;
    height: auto;
    min-height: 300px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
    padding: 2%;
}

.box {
    width: calc(30% - 10px);
    box-sizing: border-box;
    height: auto;
    min-height: 150px;
    text-align: left;
    padding: 10px;
    background-color: rgba(49, 48, 48, 0.356);
    border-radius: 20px;
    margin-bottom: 4%;
}

.fade-in-up-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    width: 100%;
    box-sizing: border-box;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.get-started {
    width: 100%; 
    height:auto; 
    box-sizing:border-box; 
    min-height:100px; 
    padding: 10px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(to right, rgb(255, 140, 0),  rgb(255, 179, 71), rgb(227, 100, 20), rgb(255, 69, 0));
    margin-bottom: 5%;
    padding-bottom: 2%;
    text-align: center;
}

.btn {
    border: 1px solid white;
    width: 200px;
    aspect-ratio: 0/1;
    color: white;
    font-weight: bolder;
    background-color: transparent;
    min-height: 10px;
    padding: 10px;
    cursor: pointer;
}

.githubICon, .npmICon {
    width: 3%; 
    float: right;
    cursor:pointer;
    margin-left: 2%;
}