* {
    font-family: 'Titillium Web', sans-serif;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}

body {
    filter: hue-rotate(5deg) saturate(2);
    overflow: hidden;
    background-image: url(../img/background_2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*background-color: #c3daec;*/
}

#premain {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#logo {
    position: relative;
}

#main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
}

#tools {
    display: flex;
    flex-direction: row;
}

#navtitulo {
    background: #3a6385;
    background: linear-gradient(45deg, #3a6385 0%, #598cb5 100%);
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.488) 0px 0px 20px;
    z-index: 10;
    text-align: center;

    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    transition: all .1s ease-out;
}

footer {
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: #919191;
    background: whitesmoke;
    background: linear-gradient(180deg, #c5c5c5 0%, whitesmoke 24%);
    text-align: center;
    padding: 20px;
}

footer p {
    color: #00000094;
    text-shadow: none;
}

ul {
    list-style: none;
}

nav {
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    transition: all .1s ease-out;

    overflow-x: auto;
}

/* Largura da barra de rolagem */
::-webkit-scrollbar {
    width: 10px;
}

/* Fundo da barra de rolagem */
::-webkit-scrollbar-track-piece {
    background-color: rgba(255, 255, 255, 0);
}

/* Cor do indicador de rolagem */
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
    background-color: #BAC0C4
}

/* Cor do indicador de rolagem - ao passar o mouse */
::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
    background-color: #717171
}

nav:hover {
    transition: .4s;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.212) 0px 0px 10px inset;
    transform: scale(.97);
}

li {
    border: 1px solid rgb(255, 255, 255);
    padding: 10px;
    margin: 10px 0px;
    display: flex;
    border-radius: 15px;
    justify-content: space-between;
    opacity: 0.7;
}

li:hover {
    opacity: 1;
    transition: .1s;
    transform: scale(1.1);
    background-color: #87afe4;
    box-shadow:#87afe491 0px 0px 5px;
}

li:active {
    background-color: #0000001e;
    box-shadow:#3e5470 0px 0px 6px inset;
    transition: 0s;
}

hr {
    margin: 20px 10px;
    opacity: 0.2;
}

.navbar {
    padding: 20px 30px;
    height: calc(100vh - 192px);
    width: 33.3%;
}

.tec {
    background-color: #4C82AD;
}

.com {
    background-color: #598cb5;
}

.ger {
    background-color: #4C82AD;
}

#floatcards {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.card {
    background-color: whitesmoke;
    padding: 20px 30px;
    padding-right: 50px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #919191;
    display: flex;

    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    transition: all .1s ease-out;
}

#floatcards:hover > .card{
    transition: .2s;
    padding-right: 100px;
}

#copyip:hover, #copypass:hover {
    filter:opacity(0.7);
    transform: scale(1.05);
    text-decoration: underline;
    color: rgb(0, 26, 255);
}

#copyip:active, #copypass:active {
    filter:opacity(1);
}

.card p,h3 {
    color:black;
    text-shadow: none;
}

.box {
    margin-right: 10px 10px;
}

#ipcard {
    color: black;
    text-shadow: none;
    background-color: white;
    padding: 32px 55px;
    border-radius: 20px;
    opacity: 0.8;

    transition: all .1s ease-out;
}

#ipcard:hover {
    opacity: 1;
    transition: .2s;
}

img {
    transition: all .05s ease-out;
}

img:hover {
    cursor: pointer;
}