﻿body {
  font-family: 'Inter';
  font-size: 20px;
  padding: 0px;
  margin: 0px 0px 0px 0px;
  font-weight: normal;
  background-color: black;
  color: white;
  overflow-x: hidden;
  overflow-y: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

a:link {
  color: white;
  text-decoration: none;
}

a:visited {
  color: white;
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 5px;
}

div.oDivMain {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(/lib/img/capaFundo.jpg);
}

div.oDivMainContent {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
}

div.oDivMainLeft {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-width: 200px;
  max-width: 200px;
}

div.oDivMainRight {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-left: 0px;
  width: 100%;
  overflow-y: auto;
}

div.oDivImage {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 50%;
  box-shadow: 0 1px 10px #6c88a9;
}

div.oDivImageSelected {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 50%;
  box-shadow: 0 1px 10px yellow;
}

div.oDivImageLink {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 50%;
  box-shadow: 0 1px 10px #6c88a9;
  cursor: pointer;
}

div.oDivImageLink:hover{
  box-shadow: 0 1px 10px yellow;
}

div.oDivLinhaContainer {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

p.oParBemVindo {
  font-size: 200%;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px blue;
}

div.oDivFooter {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  height: 30px;
  width: 100%;
  bottom: 0px;
  box-shadow: 0 1px 10px #6c88a9;
  background-color: black;
  opacity: 40%;
}

p.oParFooter {
  font-size: 80%;
  color: white;
  font-weight: normal;
  width: 100%;
  text-align: center;
}

div.oDivCenter {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  height: 100%;
}

div.oDivDivisao {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  background-color: black;
  min-height: 10px;
}

p.oParSobreTexto {
  text-align: justify;
  color: white;
  width: 100%;
  font-size: 90%;
}