@import "desktopSize.css";
@import "tabletSize.css";
@import "mobileSize.css";

/* fallback */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  src: url(../fonts/googleFonts/fontIcon/icon.woff2) format('woff2');
  font-display: swap;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.selectable {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}
.domine {
  font-family: "Domine", serif;
  font-style: normal;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
}
main{
    padding-top: 50px;
}
body{
    font-family: "Domine", serif;
    margin: 0px;
    padding: 0px;
}
.line{
    padding: 0px;
    width: calc(100% - 20px);
    height: 1px;
    background-color: #000;
    float: left;
    margin: 10px 0px;
}
h1{
    font-size: 30pt;
    font-weight: 800; 
}
h2{
    font-size: 25pt;
    font-weight: 600; 
}
h3{
    font-size: 20pt;
    font-weight: 400; 
}
input{
    border: 1px solid #c6c6c6;
    outline: none;
    padding: 5px;
    margin: 0px;
    float: left;
    font-family: "Domine", serif;
}
input:focus{
    font-weight: 800;
    border: 1px solid #000;
    transition: border 0.2s ease-in;
}
input[type=submit]{
    background-color: #000;
    color: #FFF;
    border: 1px solid #000;
    float: left;
}
input[type=button]{
    background-color: #000;
    color: #FFF;
    border: 1px solid #000;
    float: left;
}
.floatLeft{
    float: left;
}
.spanButton{
    background-color: #000;
    color: #FFF;
    border: 1px solid #000;
    float: left;
    cursor: pointer;
}
.spanButton:hover{
    background-color: #454545;
}
.spanButton .text{
    margin: 3px;
    float: left;
    font-size: 17px;
    padding: 0px 10px;
}
footer{
    position: fixed;
    bottom: 0px;
    left: 0px;
    padding: 10px;
    width: calc(100% - 20px);
    border-top: 1px solid #000;
    font-size: 12px;
    background-color: #FFF;
}
footer span{
    padding: 5px;
    margin: 0px 5px;
}
footer .footerButton{
    float: right;
    font-size: 12px;
    text-decoration: underline;
    padding: 5px;
    margin: 0px 5px;
    border-left: 1px solid #000;
    cursor: pointer;
}
footer .footerButton:last-child{
    border: none;
}
footer .footerButton:hover{
    background-color: #F1F1F1;
}
.bodyWidthFull{
    padding: 15px;
    margin: 60px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    float: none;
}
.bodyWidthFull .item{
    /*border: 1px solid #000;*/
    padding: 15px;
    margin: 5px;
    background-color: #f6f6f6;
}

.bodyWidthFull .item img{
    width: 100%;
    float: left;
    margin: 10px 0px;
}
.bodyWidthFull .item h2{
    width: 100%;
    float: left;
    font-size: 30px;
    font-weight: 900;
    margin: 10px 0px;
    text-transform: uppercase;
}
.bodyWidthFull .item h2:hover{
    text-decoration: underline;
    cursor: pointer;
}
.bodyWidthFull .item h3{
    width: 100%;
    float: left;
    font-size: 12px;
    font-weight: 200;
}
.bodyWidthFull .item span{
    font-weight: 800;
    width: 100%;
    float: left;
    font-size: 12px;
}
.bodyWidthFull .item .tagBody{
    width: 100%;
}
.bodyWidthFull .item .tagBody .tagItem{
    float: left;
    background-color: #c9c9c9;
    color: #112A46;
    width: fit-content;
    margin: 2px;
    padding: 10px;
    text-transform: uppercase;
    cursor: pointer;
}
.bodyWidthFull .item .tagBody .tagItem:hover{
    background-color: #000;
    color: white;
}
.bodyWidthFull .item .info{
    margin: 10px 0px;
}
.bodyWidthFull .item .info .spanImg{
    width: 30px;
    height: 30px;
    background-image: url(../image/org/profile.webp);
    background-size: cover;
    border-radius: 100px;
    border: 3px solid #000;
    float: left;
}
.bodyWidthFull .item .info .spanText{
    float: left;
    padding: 10px;
    width: auto;
    font-weight: 100;
}
.line{
    width: 100%;
    float: left;
    height: 5px;
    background-color: #000;
}
.cursorPointer{
    cursor: pointer;
}
.backgroundTranparent{
    background-color: #FFF;
    opacity: 0.9;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}