/* Font faces */
@font-face {
    font-family: "Uber Move";
    src: url("../fonts/UberMove-Bold.otf") format("opentype");
    font-weight: 700;
}

@font-face {
    font-family: "Uber Move Text";
    src: url("../fonts/UberMoveText-Regular.otf") format("opentype");
}

/* Base styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: #F3F3F3;
    color: #000000;
}

/* UPC Block */
.upc {
    text-align: center;
    padding: 1.25rem; /* 20px */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 31.25rem; /* 500px */
}

.upc__logo {
    margin-bottom: 1rem; /* 16px */
    max-width: 5rem; /* 80px */
}

/* Typography */
.upc__title {
    color: #000000;
    font-family: "Uber Move", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.75rem; /* 28px */
    font-style: normal;
    line-height: 2rem; /* 32px */
    letter-spacing: 0;
    margin-bottom: 1rem; /* 16px */
}

.upc__description {
    color: #000000;
    font-family: "Uber Move Text", sans-serif;
    font-size: 1rem; /* 16px */
    font-style: normal;
    line-height: 1.25rem; /* 20px */
    letter-spacing: 0;
    margin-bottom: 1.5rem; /* 24px */
}

/* Button styles */
.upc__buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 17.5rem; /* 280px */
    gap: 1rem; /* 16px */
}

.upc__button {
    display: flex;
    padding: 0.5rem; /* 8px */
    justify-content: center;
    align-items: center;
    gap: 0.5rem; /* 8px */
    border-radius: 0.5rem; /* 8px */
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-family: "Uber Move Text", sans-serif;
    font-size: 0.875rem; /* 14px */
}
