body {
    font-family: 'Courier New', Courier, monospace;
    background-color: white;
}

.infographic {
    border-style: solid;
    border-width: 5px;
    border-color: hotpink;
    background-color: white;
    max-width: 600px; 
    margin: 20px auto; 
    padding: 20px;
    border-radius: 10px;
}

    

.infographic h1 {
    text-align: center;
    color: hotpink;
    text-decoration-line: underline;
}

.infographic-image {
    display: block;
    margin: 0 auto; 
    border-radius: 10px;
    max-width: 45%; 
    height: auto; 
    border-style: outset;

}

.content h2 {

    color: hotpink;
}

ul {
    list-style-type: none; 
    padding-left: 0; 
}

ul li {
    position: relative; 
    margin-bottom: 10px; 
    padding-left: 30px; 
}

ul li::before {
    content: '';
    background-image: url('hairclip.jpg'); 
    background-size: contain; 
    background-repeat: no-repeat; 
    position: absolute; 
    left: 0; 
    top: 25%; 
    transform: translateY(-50%); 
    width: 35px; 
    height: 35px; 
}

strong {

    color:hotpink;
}

.project-button {
    background-image: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    font-family: "Inter UI", "SF Pro Display";
    font-size: 16px;
    font-weight: 500;
    height: 4rem;
    padding: 0;
    line-height: 4rem;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
    transition: all .5s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-decoration: none;
    display: inline-block;
    position: fixed;
    bottom: 20px;
    left: 20px; 
}
.project-button:hover {
    box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
    transition-duration: .1s;
}

@media (min-width: 768px) {
    .project-button {
        padding: 0 2.6rem;
    }
}