:root{
    --Night-Black: #0E0F12;
    --Palatine-Blue: #0038FF;
    --Brandeis-Blue: #1C79FF;
    --Light-Grey: #F5F5F7;
    --White: #FAFAFC;
    --Mid-Grey: #EDEEF2;
}
.title{
    width: 100%;

}
.table-1{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
}
.info-row{
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
}
.one-row{
    display: flex;
    margin-bottom: 16px;
}
.name-text{
    flex: 1;
}
.cer-text{
    width: 150px;
    text-align: center;
    margin-left: 8px;
}
.tech-text{
    width: 170px;
    text-align: center;
}
.row-meter{
    background-color: var(--Mid-Grey);
    padding: 8px 10px;
    border-radius: 10px;
    flex: 1;
}
.download-button{
    background-color: var(--Mid-Grey);
    padding: 8px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    margin-right: 0px;
    margin-left: 16px;
    transition: all 300ms ease-in-out;
}
svg{
    color: var(--Night-Black);
    transition: all 300ms ease-in-out;
}
.download-button:hover{
    background-color: var(--Palatine-Blue);
}
.download-button:hover svg{
   color: var(--White);
}
   

@media only screen  and (min-width: 480px) and (max-width: 768px) {
    .cer-text{
        width: max-content;
        text-align: center;
        margin-left: 16px;
    }
    .tech-text{
        width: 100px;
        text-align: center;
    }
    .download-button{
        width: 70px;
    }
}
@media only screen and (min-width: 300px) and (max-width: 480px) {
    .name-text{
        flex: 1;
        font-size: 0.8rem;

    }
    .cer-text{
        width: 70px;
        text-align: center;
        margin-left: 6px;
        font-size: 0.8rem;
    }
    .tech-text{
        width: 100px;
        text-align: center;
        font-size: 0.8rem;
    }
    .download-button{
        width: 50px;
    }
}