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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}

html {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    -ms-zoom: fixed;
    -ms-content-zooming: none;
    zoom: 1.0;
    height: 100vh;
}

body {
    height: 100vh;
}

:root {
    touch-action: pan-x pan-y;
    height: 100% 
}

#getNewCards {
    width: 200px;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    background-color: #59C173;
    border-radius: 50px;
    border: 1px solid #000;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

#getNewCards:hover {
    box-shadow: rgba(240, 46, 170, 0.4) 0px 5px, rgba(240, 46, 170, 0.3) 0px 10px, rgba(240, 46, 170, 0.2) 0px 15px, rgba(240, 46, 170, 0.1) 0px 20px, rgba(240, 46, 170, 0.05) 0px 25px;
}

.custom-list {
    list-style-type: circle;
}

.link {
    text-decoration: none;
    color: #0969da;
}

#download-container {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    border: 3px solid #000;
}

#android-download {
    width: 26px;
    display: block;
    margin: auto;
}