html{
    width: 100vw;
}
body{
    margin:0;
    width:100vw;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;   
    width: 100vw;
}
.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
img{
    filter: invert(1);
    width: 70px;
    height: 70px;
}
.top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    width:100vw;
    padding: 20px 0;
    background: #447FAB;
    background: linear-gradient(45deg, rgba(68, 127, 171, 1) 0%, rgba(26, 16, 18, 1) 100%);
}
.info{
    width: 60%;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.5rem;
}
.bottom {
    height: 100%;
    width:100vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #29284A;
    background: linear-gradient(45deg, rgba(41, 40, 74, 1) 0%, rgba(26, 16, 18, 1) 100%);
}

@media screen and (max-width:1080px) {
.bottom {
    height: 100%;
    width:100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: #29284A;
    background: linear-gradient(45deg, rgba(41, 40, 74, 1) 0%, rgba(26, 16, 18, 1) 100%);
}
}