body{
    margin: 0;
    padding: 0;
}

h1{
    margin: 0;
    padding: 0;
}

.hero {
    background-color: #e3bec6;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1, h2{
    background-color:white;
    text-align: center;
    padding: 0 20px;
}

.hero h1{
    font-size: 1.8rem;
}

.hero h2{
    font-size: 1rem;
}

.section-std-height{
    height:100vh;
    width: 100%;
}

.content-graph{
    color:#e3bec6;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.philosophical{
    background-color: #eeeeee;
}

.philosophical h1{
    text-align: center;
    padding: 10px 20px;
    color:#121212;
    margin-bottom: 2rem;
}

.phone{
    overflow-y: scroll;
    scrollbar-color: gray #242526 ;
    background-color: #242526;
    width: 75%;
    max-width: 350px;
    height: 75%;
    margin: 0 auto;
    border: 1rem black solid;
    border-top: 3rem black solid;
    border-bottom: 3rem black solid;
    border-radius: 36px;
    box-sizing: border-box;
}

.phone h1{
    color:#eeeeee;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

.message-container{
    display: flex;
    flex-direction: column;
    gap: 0.75 rem;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.msg {
    max-width: 70%;
    padding: 0.75rem 1rem;
    border-radius: 1.2rem;
    margin-bottom: 10px;

    font-size: 0.95rem;
    line-height: 1.4;

    word-wrap: break-word;
}

.msg.left{
    font-family:"arial", sans-serif;
    background-color: #3a3b3c;
    color: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.msg.right{
    font-family:"arial", sans-serif;
    background-color: #0084ff;
    color: white;
    align-self: flex-end;
    border-top-right-radius: 0;
}

#network {
  width: 90%;
  height: 80%; /* REQUIRED */
  background-color: #e3bec6;
}

/* FONTS */

.courier-prime-regular {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}

.courier-prime-bold {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
}

.courier-prime-regular-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: italic;
}

.courier-prime-bold-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: italic;
}

/* RESPONSIVENESS */

/* Tablet */
@media (min-width: 768px) {}

/* Laptop */
@media (min-width: 1024px) {}

/* Desktop */
@media (min-width: 1280px) {
    .hero h1{
        font-size:4rem;
    }

    .hero h2{
        font-size: 2rem;
    }
}
