html, body {
    margin: 0;
    padding: 0;
    background-color: #0f0f0f;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
}

.header-div {
    background-color: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0px 0px 8px 8px;
    padding: 0 20px;
    height: 65px;
}

.ico {
    height: 40px;
}

.fl {
    font-weight: bold;
    font-size: 25px;
}

.back {
    background-color: #242424;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.1s;
    color: white;
    text-decoration: none;
}

.back:hover {
    background-color: #313131;
}

section {
    text-align: center;
}

.app-text {
    font:bold 32px monospace;
    color: white;
}

.desc-app {
    font:bold 16px sans-serif;
    color: white;
}

.fte {
    transition: 0.1s;
    background-color: white;
    height: 225px;
    width: 365px;
    border-radius: 8px;
    margin: auto;
}

.fte:hover {
    height: 235px;
    width: 375px;
}

.app-img {
    border-radius: 10px;
}

.download-btn {
    background-color: #242424;
    padding: 15px 16px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font:bold 16px sans-serif;
    transition: 0.2s;
   flex-wrap: wrap;
}

.download-btn:hover {
    background-color:#014858;
}

.downloads {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}