@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

.main {
    height: 100%;
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.main {
    text-align: center;
}

.main .center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main .center h1 {
    font-weight: 500;
    margin-top: 2vmax;
    font-size: 34px;
    border-bottom: 2px solid black;
    padding-bottom: .5vmax;
}

.main .center .logo {
    height: 15vmax;
}
.logo-img img{
   height: 8vmax;
}
.logo-img {
    padding: 1vmax;
    background-color: white;
    margin-top: 2vmax;
}
.logo-img h6{
    font-size: 20px;
    font-weight: 600;
}

.main .center h2 {
    margin-top: 2vmax;
    font-weight: 400;
}

.main .center .store {
    display: flex;
    gap: 5vmax;
    margin-top: 2vmax;
}


.main .center .store a {
    text-decoration: none;
    color: black;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.139);
    padding: .5vmax 1vmax;
    border-radius: 5px;
    transition: .25s;
    display: flex;
    text-align:start;
    align-items: center;
    gap: .5vmax;
}

.main .center .store a:hover {
    transform: scale(1.1);
    border-radius: 0;
}

.main .center .store a i {
    font-size: 40px;
}

.main .center .store a span {
    font-weight: 500;
    font-size: 13px;
}
.main .center .store a img{
    height: 2.9vmax;
}

.main .center .store a h5 {
    font-size: 20px;
    font-weight: 500;
    margin-top: -.3vmax;
}



@media only screen and (max-width: 600px) {


    .main .center h1 {
        margin-top: 3vmax;
        font-size: 25px;
    }

    .logo-img img{
        height: 15vmax;
     }
     .logo-img {
         padding: 1vmax;
         background-color: white;
         margin-top: 3vmax;
     }
     .logo-img h6{
         font-size: 18px;
         font-weight: 600;
     }
    .main .center h2 {
        margin-top: 3vmax;
        font-weight: 400;
        font-size: 20px;
    }

    .main .center .store {
        display: flex;
        gap: 3vmax;
        margin-top: 5vmax;
        flex-direction: column;
    }

    .main .center .store a {
        text-decoration: none;
        color: black;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.139);
        padding: 1.5vmax 4vmax;
        border-radius: 5px;
        transition: .25s;
        gap: 2vmax;
    }

    .main .center .store a:hover {
        transform: scale(1.1);
        border-radius: 0;
    }

    .main .center .store a i {
        font-size: 50px;
        margin-left: -1vmax;
    }

    .main .center .store a span {
        font-weight: 400;
        font-size: 14px;
    }

    .main .center .store a h5 {
        font-size: 20px;
        font-weight: 500;
        margin-top: -.8vmax;
    }
    .main .center .store a img{
        height: 7vmax;
    }
}