File size: 4,228 Bytes
d3bcaa7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e0bda8e
d3bcaa7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{% extends 'base.html' %} {% block title %}Home{% endblock title %} {% block
custom %}
<style>
  body {
    background-image: url("https://images2.alphacoders.com/546/546678.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .content-box {
    background-color: rgba(255, 255, 255, 0.8);
    margin: 2rem;
    padding: 2rem;
    border-radius: 0.5rem;
  }

  .opaque-btn {
    background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
    color: white; /* White text */
    border: none; /* No border */
    margin-bottom: 1rem; /* Space below button */
    display: block; /* Make the button a block element */
    width: 100%; /* Full width */
    text-align: left; /* Align text to the left */
    border-radius: 20px; /* Rounded corners */
    padding: 0.5rem 1rem; /* Padding inside the button */
  }

  .map-link {
    text-align: center;
    margin-top: 1rem;
  }

  .image-credit {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: black;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 0.8rem;
  }
</style>
{% endblock custom %} {% block content %}
<div class="image-credit">
  This picture was uploaded by Samim Hasan to Wallpaper Abyss
</div>
<div class="container">
  <div class="row">
    <div class="col-lg-11 content-box text-center">
      <h1>MTA Socio-Economic Inequality Analysis</h1>
    </div>
    <div class="col-lg-11 content-box">
      <h2>The Problem at hand:</h2>
      <p>
        Have you ever been frustrated by consistent train delays during your
        daily commute? Our team certainly was, and it drove us to uncover the
        truth behind these persistent interruptions. After sifting through over
        5 million data entries, we made a startling discovery: neighborhoods
        with lower median incomes suffer the most frequent and prolonged delays.
        This was a revelation, considering the MTA's reputation as an affordable
        transit option for New Yorkers. It's important to note that other
        factors, like litter on the tracks, could be influencing this trend. But
        our findings are clear: lower income areas endure the brunt of the
        city's train delays.
      </p>
      <!-- Hamzat's section -->
      <button class="opaque-btn">Hamzat:</button>
      <p>
        I used to ride the A/C trains when I was in high school and I noticed
        that the C train has frequent delays at the Euclid Av stop and the A
        train would has more frequent delays at Grant Av and I used to wonder
        why that was.
      </p>
      <!-- David's section -->
      <button class="opaque-btn">David:</button>
      <p>
        Growing up, my native train-line was the 7. I noticed that it usually
        ran smoother when I would ride to Manhattan. It definitely felt like the
        MTA prioritized service going into the city and not the other way
        around.
      </p>
      <!-- Khaled's section -->
      <button class="opaque-btn">Khaled:</button>
      <p>
        Riding the MTA in New York City feels like two different worlds. When I
        go to school in Harlem, the trains are often late at almost every stop,
        making the trip slow and frustrating. But, when I head from school to my
        job downtown, it's a completely different story. The trains run smoothly
        and on time, getting me there without any problems. It's interesting to
        see how different the train service can be in different parts of the
        city.
      </p>
      <!-- Baljinder's section -->
      <button class="opaque-btn">Baljinder:</button>
      <p>
        I live in a deep part of Queens and go to school in Harlem; my daily
        commute takes me through Queens, Brooklyn, and Manhattan and the stops
        that always have the most delays are always the same. West Fourth,
        Broadway Junction, 145th Street, all of these stations have insane
        delays and are in more diverse areas that have a lower median income.
      </p>

      <div class="map-link">
        <a href="/map" class="btn btn-primary">Click here for the Map</a>
      </div>
    </div>
  </div>
</div>
{% endblock content %}