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

body{
    font-family: "Poppins";
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

p{
    margin-bottom: 7.5px;
}

.apps-share-wrapper{
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
}

.apps-share-button{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all .15s linear;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -ms-transition: all .15s linear;
    -o-transition: all .15s linear;
}

@media(max-width: 768px){
    .apps-share-wrapper{
        display: block;
    }
}

.apps-share-button:hover{
    opacity: .75;
}

.apps-content{
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.apps-title{
    margin-bottom: 10px;
}

.apps-image-wrapper{
    width: 100px;
    margin: 35px 0;
    padding: 7.5px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.apps-image-wrapper .apps-image{
    width: 100%;
}

.apps-button-group{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.apps-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(90vw, 200px);
    transition: all .15s linear;
    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -ms-transition: all .15s linear;
    -o-transition: all .15s linear;
}

.apps-button:hover{
    opacity: .75;
}

.apps-button img{
    width: 100%;
}