*{
    margin: 0;
    padding: 0;
}

.top{
    color: white;
    width: 100%;
    height: 50vh;
    background-color: #F40B0F;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.stock-card{
    background-color: white;
    color: rgb(36, 36, 36);
    width: 18vw;
    height: 30vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.stock-card p{
    font-size: 12px;
}

.green{
    color: rgb(3, 207, 3);
}

h1{
    font-size: 50px;
    font-weight: 700;
}

.bottom{
    height: 30vh;
    text-align: center;
    padding: 20px;
}

@media (max-width:670px) {
    .top{
        color: white;
        width: 100%;
        height: 50vh;
        background-color: #F40B0F;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .top h1{
        font-size: 30px;
    }

    .stock-card{
        background-color: white;
        color: rgb(36, 36, 36);
        width: 60vw;
        height: 30vh;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 3px;
    }
    
}