p,
h3{
    font-family: "Red Hat Text", sans-serif;
    font-size: large;
}
main {
    display: flex;
    flex-direction: column;
}

h1 {
 font-size: 3rem;
} 

h1,
h3 {
    text-align: center;
}
article {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px auto;
    width: 70%;
}

article p {
    margin-bottom: 30px;
}

hr {
    margin: -10px auto -10px auto;
    border: 1px solid black;
}
.border {
    border-left: 2px solid black;
    padding-left: 50px; 
    position: relative;
}
.border p {
    position: relative;
}
.border p::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: black;
    border-radius: 50%;
    left: -58px; 
    top: 50%;
    transform: translateY(-50%);
}
button {
    background-color: black;
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 10px;
    display: flex;
    margin: auto;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
}
.dull {
    color:slategrey;
}