body
{
    font-size: 20px;
    font-family: 'Itim', cursive;
}
.main-container
{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}
.sub-container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 16px;
}
.tab
{
    text-align: center;
    margin: 16px;
}
.cam
{
    top: 0;
    left: auto;
}
#webcam
{
    overflow: hidden;
    position: relative;
    border: 4px solid white;
    border-radius: 32px;
    transition: 0.2s border ease;
}
.header
{
    width: 400px;
    border-radius: 16px;
    box-shadow: 0px 8px 16px 0 rgba(0,0,0,0.2);
    padding: 16px;
}
.description
{
    width: 400px;
    border-radius: 16px;
    box-shadow: 0px 8px 16px 0 rgba(0,0,0,0.2);
    padding: 16px;
}
.classifier
{
    width: 400px;
    color: white;
    background-color: #6772a9;
    border-radius: 16px;
    box-shadow: 0px 8px 16px 0 rgba(0,0,0,0.2);
    padding: 16px;
    transition: 0.2s background-color ease;
}
.classifier:hover
{
    background-color: #3a3277;
}
@media (max-width: 480px)
{
    .header
    {
        width: 90%;
    }
    .classifier
    {
        width: 90%;
    }
    .description
    {
        width: 90%;
    }
}
.loader-container
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    /*display: none;*/
    z-index: 9999;
}
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 64px;
    height: 64px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    z-index: inherit;
}
  
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}