body {
    background-color: rgb(248,250,255);
}

#container {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 200px;
}

#header-container {
    display: flex;
    align-items: center;
}

#logo {
    width: 40px;
    margin-right: 30px;
}

#nav-container {
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: "Poppins";
    font-size: 15px;
    text-decoration: none;
    color: black;
    margin-right: 30px;
}

.nav-redirect-logo {
    width: 12px;
}

.nav-dropdown-logo {
    width: 12px;
}

#content-container {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

#content-title {
    color: black;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 48px;
    margin-bottom: 0px;
}

#content-title-2 {
    color: rgb(86, 86, 243);
    font-family: "Poppins";
    font-weight: 500;
    font-size: 40px;
    margin-top: 0px;
    margin-bottom: 0px;
}

#content {
    width: 50%;
}

#content-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content-text {
    font-family: "Poppins";
    font-size: 18px;
    width: 75%;
}

#codebox-image {
    width: 80%;
}

#content-buttons {

}

#download-button {
    background-color: rgb(37, 99, 235);
    color: white;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 500;
    border: none;
    padding: 6px 24px;
    border-radius: 10px;
    margin-right: 16px;
}

#download-button:hover {
    opacity: 0.8;
    cursor: pointer;
}

#documentation-button:hover {
    opacity: 0.8;
    cursor: pointer;
}

#documentation-button {
    background-color: white;
    color: black;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 500;
    border: solid 1px black;
    padding: 6px 24px;
    border-radius: 10px;
}

#footer-container {
    width: 100%;
    height: 300px;
    background-color: rgb(235,241,253);
    padding: 10px 10px;
    display: flex;
    justify-content: center;
}

#footer-content {
    width: 70%;
    align-items: center;
}

#performance-flex {
    color: black;
    font-family: "Poppins";
    font-size: 24px;
    font-weight: 600;
}

#performance-flex span {
    color: rgb(70, 105, 219);
    font-family: "Poppins";
    font-size: 24px;
}

.flex-box-container {
    justify-content: space-between;
}

.flex-box {
    width: 100%;
    margin-top: 40px;
}

.flex-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.flex-box-header-icon-container {
    background-color: rgb(31, 41, 55);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 10px;
}

.flex-box-header-icon {
    width: 30px;
}

.flex-box-title {
    font-family: "Poppins";
    font-weight: 500;
}

.flex-box-description {
    font-family: "Poppins";
    font-size: 16px;
    width: 30%;
    margin-top: 0px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

#content-title, #content-title-2 {
    animation: float 3s ease-in-out infinite;
}