@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

body {
    background: white;
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    background: #fff;
    padding: 2rem;
    line-height: 1.5rem;
    text-align: center;
}

.link-button {
	width: 40%;
    display: none;
    text-decoration: none;
}

.link-button.shown {
    display: inline-block;
}

.link-button.hidden {
    display: none;
}

.link-button span {
	width: 80%;
    border-radius: 5px;
    display: inline-block;
    background: #377fc3;
    color: #fff;
    padding: 0.5rem 1rem;
}

#app-icon {
    margin-bottom: 10%;
    border-radius: 10%;
}

.shared-links-container {
	display: flex;
	margin-top: 1.5rem;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-direction: row;
	flex-wrap: wrap;
}

.app-store-links {
	display: flex;
	margin-top: 1.5rem;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-direction: row;
	flex-wrap: wrap;
}

.app-store-links a img {
	height: 50px;
	min-width: 100%;
	max-width: 100%;
}

#ios-store-link,
#android-store-link {
	display: none;
}

#ios-store-link.shown,
#android-store-link.shown {
	display: flex;
}

@media (max-width: 600px) {
	#app-icon {
		width: 100%;
	}

	.link-button {
		width: 100%;
	}

	.app-store-links,
	.shared-links-container
	 {
	  	flex-direction: column;
	}

	.app-store-links a img {
		min-width: 100%;
	}
}