/* styles.css */
@font-face {
    font-family: 'Ubuntu';
    src: url("../fonts/Ubuntu-Regular.ttf");
    font-display: swap
}

@font-face {
    font-family: 'Ubuntu-Bold';
    src: url("../fonts/Ubuntu-Bold.ttf");
    font-display: swap
}

body {
    font-family: 'Ubuntu', Arial, sans-serif;
}

.app-banner {
    text-align: center;
    padding: 20px;
}

.app-icon {
    width: 200px;
    padding-top: 50px;
    padding-bottom: 30px;
}

.download-button {
    background-color: rgb(254, 195, 10);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    width: 200px;
}

.download-button:hover {
    background-color: rgb(61, 60, 51);
    color: white;
}

.usage-description {
    background: linear-gradient(to right, rgb(254, 195, 10), rgb(239, 148, 11));
    color: white;
    padding: 10px;
    text-align: center;
}

footer {
    background: rgb(61, 60, 51);
    text-align: center;
    color: white;
    padding: 10px;
    padding-bottom: calc(100vh - (100% - 100vh));
}

a {
    color: white;
}

a:hover {
    color: rgb(254, 195, 10);
}

a:visited {
    color: white;
}