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

/* Font-face definition for Usual */
@font-face {
    font-family: 'Usual';
    src: url('fonts/Usual-Regular.woff2') format('woff2'),
         url('fonts/Usual-Regular.woff') format('woff'),
         url('fonts/Usual-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Usual';
    src: url('fonts/Usual-Bold.woff2') format('woff2'),
         url('fonts/Usual-Bold.woff') format('woff'),
         url('fonts/Usual-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Usual', Arial, sans-serif;
    background-color: #363636;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 645px;
}

.title {
    font-size: 48px;
    margin-bottom: 32px;
    font-weight: 400;
    font-family: 'Roboto', Arial, sans-serif;
}

.description {
    margin-bottom: 120px;
    font-weight: 400;
    line-height: 1.47;
}

.app-store-logo {
    width: 106px;
}

.continue-link {
    display: inline-block;
    margin-top: 32px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

.continue-link:hover {
    color: #ccc;
}

footer {
    background-color: #f0f0f0;
    color: #363636;
    height: 170px;
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-content a {
    color: #363636;
    text-decoration: none;
}

.nabla-logo {
    max-width: 135px;
    margin-bottom: 16px;
}

footer p {
    font-size: 16px;
    font-weight: 400;
}

