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

html,
body {
    padding: 0;
    margin: 0;
    height: 100vh;
    font-family: "Roboto", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    padding: 10px;
    margin: auto;
    width: 300px;
}

.app-logo {
    display: block;
    width: 75px;
    margin: 0 auto;
    height: 75px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 15px 0 50px 0;
    padding: 0;
}

#market-buttons {
    display: none;
}

.market-link {
    display: block;
    width: 100%;
    background-color: #000000;
    border-radius: 15px;
    margin-top: 25px;
    box-shadow: 2px #000000;
    transition: transform ease 0.4s, opacity ease 0.4s;
}

.market-link:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.market-link img {
    display: block;
    width: 100%;
    background-color: #2b2525;
    border-radius: 15px;

}

#open-app {
    box-sizing: border-box;
    padding: 25px 20px;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    display: none;
}