* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    text-size-adjust: 100%;
    font-weight: inherit;
    text-rendering: optimizelegibility;
    margin: 0px;
    border-color: initial;
    border-image: initial;
    border-style: initial;
    border-width: 0px;
    outline: 0px;
    padding: 0px;
    transition: 0.5s;
}

body {
    font-family: 'Montserrat', sans-serif;
	margin: 0;
    background: #fefefe;
    color: #1d1d1d;
    font-size: 16px;
}

.container-centered {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 70vh;
}

.text {
	margin-top: 30px;
}

.img-logo {
	cursor: pointer;
	height: 150px;
}


.link-lojas {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.link-lojas a {
    display: inline-block;
}

.link-app-store {
    width: 160px;
}

.link-play-store {
    margin-left: 13px;
    width: 177px;
}

@media screen and (max-width: 1024px) {
    .img-logo {
        width: 40%;
        height: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .link-lojas {
        display: block;
    }

    .link-lojas a {
        width: 100%;
    }

    .link-app-store {
        width: 50%;
    }

    .link-play-store {
        width: 58%;
    }
}