.container{
    background: var(--container-grad);
    display: flex;
    height: 90vh;
    width: 100vw;
    justify-content: space-around;
    align-items: center;
    overflow-x: hidden;
}
body{
    background: var(--background-col);
}
.header_desc{
    flex: 1;
    padding: 32px 72px;
}
.header_img{
    flex: 1;
}
.header_heading{
    color: var(--text-color-headings);
    font-size: 34px;
    font-weight: 700;
    width: 100%;
}
.header_subheading{
    color: #718096;
    font-size: 18px;
    margin-top: 24px;
    text-align: left;
    width: 100%;
}
.header_img img{
    width: 500px;
}
.button{
    background: #3742fa;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 35px;
    outline: 0;
    width: 120px;
    margin: 20px 0px;
}
.button a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}
.display-card{
    width: 85vw;
    background: var(--card-color);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    margin: auto;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.whycrypto{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0px;
}
.whycrypto-img img{
    width: 30vw;
}
.whycrypto-desc{
    flex: 1;
    padding: 32px 90px 32px 10px;
}
.whycrypto-img{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.line-separator{
    width: 1px;
    border-radius: 50%;
    background: #718096;
    height: 80px;
    position: absolute;
    right: 0;
    top: 0;
}
.array-of-coins{
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.coin-data-head{
    width: 15vw;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.current-situation {
    display: flex;
    align-items: center;
    color: red;
    margin: 2px;
}
.current-situation h3{
    margin: 2px;
    font-size: 15px;
}
.coin-name{
    color: #a0aec0;
    font-size: 15px;
    margin: 2px;
}
.price-data{
    color: #4a5568;
    font-size: 18px;
    font-weight: 400;
}
.symbol-icon{
    width: 30px;
}
.coin-data{
    margin: 10px;
    position: relative;
}
.coin-anchor{
    text-decoration: none;
    color: inherit;
}
@media screen and (max-width: 920px){
    .container{
        flex-direction: column;
        padding-top: 80px;
    }
}
@media screen and (max-width: 684px){
    .whycrypto{
        flex-direction: column;
    }
    .whycrypto-img img{
        width: 300px;
    }
    .whycrypto-img{
        width: 100vw;
        overflow: hidden;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .whycrypto-desc{
        padding: 100px;
    }
}
@media screen and (max-width: 464px){
    .header_img img{
        width: 300px;
    }
    .header_img{
        overflow: hidden;
        width: 100vw;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .array-of-coins{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .coin-data-head{
        width: 100%;
    }
    .line-separator{
        display: none;
    }
    .whycrypto-desc{
        padding: 50px;
    }
}
