/**
 * Gunta Galerija
 * Fails: style.css
 * Apraksts: Galerijas dizains un izkārtojums
 */

body{
font-family:Arial;
}

/* KATEGORIJAS */

.categories{
margin:20px;
}
.categories button{
width:7vw;
height:4vh;
margin-right:10px;
border:none;
cursor:pointer;
color:white;
}
.cat1{background:green;}
.cat2{background:blue;}
.cat3{background:orange;}
.cat4{background:purple;}

/* TABULA */

.tableBox{
margin-left:3vw;
width:80vw;
height:75vh;
overflow-y:auto;
}
table{
width:100%;
border-collapse:collapse;
}
td,th{
border:1px solid #ccc;
width:16vw;
height:15vh;
text-align:center;
}

/* ATTĒLI */

.thumb{
height:14vh;
cursor:pointer;
}

/* FULLSCREEN */

.fullscreen{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
display:none;
justify-content:center;
align-items:center;
}
.fullscreen img{
height:85vh;
width:85vw;
}
.close{
position:absolute;
top:20px;
right:20px;
width:3vh;
height:3vh;
background:white;
text-align:center;
cursor:pointer;
}