body {
    background: black;
    font-family: 'Poppins';
    margin: 0;
    overflow: hidden;
}

@media screen and (max-width: 1000px) {
    .container {
        padding: 0 30px 0;
        width: calc(100vw - 60px);
    }
    .download {
        padding: 0 20px;
        width: calc(100% - 40px);
    }
    .download .images {
        flex-direction: column;
        gap: 30px;
    }
}

.container {
    height: 100vh;
    width: clamp(50vw, 1000px, 100vw);
    margin: auto;
    max-height: 100vh;
    overflow: hidden;
    position: relative;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
}

.functions {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: auto;
}

.functions div {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 60px;
    color: white;
    width: auto;
}

.functions div .more {
    width: 100%;
    text-align: center;
}

.functions div img {
    width: clamp(1vh, 6vw, 4vh);
    height: clamp(1vh, 6vw, 4vh);
}

.functions div span {
    font-size: clamp(1vh, 6vw, 4vh);
}

.screens {
    position: relative;
    width: 100%;
    height: 100%;
}

.screens img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.download p{
    font-size: clamp(2vh, 3vw, 3vh);
    text-align: center;
    color: white;
}

.download .images {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.download .images img {
    width: 40%;
}

.download .images div {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    width: 60%;
}

.download .images div a{
    width: 100%;
}

.download .images div a img{
    display: inline-block;
    width: 100%;
}


