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

.container{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background{
    position: relative;
    width: 550px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.main-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.downloadButton{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 400px;
}
.downloadButton img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.telegramButton{
    position: absolute;
    top: 77%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 400px;
}
.telegramButton img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
@media (max-width: 430px) {
    .downloadButton{
        top: 70%;
    }
    .telegramButton{
        top: 77%;
    }
}
@media (max-width: 414px) {
    .downloadButton{
        top: 70%;
        max-width: 350px;
    }
    .telegramButton{
        top: 77%;
        max-width: 350px;
    }
}
@media (max-width: 375px) {
    .downloadButton{
        top: 70%;
        max-width: 300px;
    }
    .telegramButton{
        top: 77%;
        max-width: 300px;
    }
}