body{
    background-color: hsla(218, 87%, 6%, 0.918);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}


#chart-container {
    width: 80%;
    margin: 0 auto;
}

.cryptoInput{
    margin: 20px;
    padding: 10px 60px;
    border-radius: 10px;
    font-size: 20px;
    border: none;

}

button{
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #44d6d6;
    color: #1b2b49;
    font-size: 20px;
}

button:hover{
    background-color: #1b2b49;
    color:  #44d6d6;
    border-color: #44d6d6;
}

.card{
    color: hsla(208, 100%, 97%, 0.356);
    box-shadow: 0 4px 8px rgba(180, 178, 178, 0.2);
    background-color: hsla(218, 87%, 6%, 0.575);
    min-width: 400px;
    display: flex;
    flex-direction:column;
    align-items: center;
    border-radius: 10px;
    
    
}

.cryptoImg{
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-top: 20px;
    
}

.nameDisplay{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    margin-bottom:20px;
   
}

.marketDisplay{
    
    margin-right: 100px;
}

.value{
    margin-left: 20px;
    color: aliceblue;
}

.change{
    margin-left: 20px;
    color:lightgreen;
}

.errorDisplay{
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}
h1{
   
    margin-top: 0;
    margin-bottom: 25px;
}

p{
    
}

.percentageDisplay {
   margin-right: 100px;
}

.increase {
    color: lightgreen;
}

.decrease {
    color: red;
}

.arrow-up::before {
    content: '▲'; /* Unicode arrow-up symbol */
    color: lightgreen;
    
}

.arrow-down::before {
    content: '▼'; /* Unicode arrow-down symbol */
    color: red;
    
}

/* Footer styling */
.footer {
    background-color: hsla(218, 87%, 6%, 0.575); /* Match your theme */
    color: hsla(208, 100%, 97%, 0.856); /* Light text color for contrast */
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 300px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-name {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.footer-role {
    font-size: 18px;
    margin: 5px 0;
}

.footer-details {
    font-size: 14px;
    margin: 10px 0;
}

.footer-contact a {
    color: hsla(208, 100%, 97%, 0.856);
    text-decoration: none;
    margin: 0 10px;
}

.footer-contact a:hover {
    text-decoration: underline;
}
/* Placeholder styling */
.placeholder {
    text-align: center;
    color: hsla(208, 100%, 97%, 0.856);
    padding: 50px;
    border-radius: 10px;
    background-color: hsla(218, 87%, 6%, 0.575);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px;
    min-width: 400px;
    font-family: 'Orbitron', sans-serif;
}

.placeholder h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.placeholder p {
    font-size: 18px;
    margin: 5px 0;
}

.chart-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    height: 400px;
}


