@font-face {
    font-family: 'doodle';
    src: url('../assets/sukidayo/2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
    background-color: rgb(0, 0, 0);
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

.secret {
    background-color: white;
    cursor: url("../assets/sukidayo/roblox.cur") 8 8, auto;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 10pt;
    font-weight: lighter;
    height: 100%;
    width: 100%;
    position: absolute;
    top : 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.secret .texto {
    background-color: rgb(255, 255, 255);
    height: 80%;
    width: 50%;
    overflow-y: auto;
}

.secret .cat {
    height: 30vh;
    width: 30vh;
    background-image: url("../assets/sukidayo/cat-cats.gif");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 100ms;
    position: absolute;
    bottom: 1%;
    left: 1%;
}

.secret .cat2 {
    height: 30vh;
    width: 30vh;
    background-image: url("../assets/sukidayo/cat-cats2.gif");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 100ms;
    position: absolute;
    bottom: 1%;
    right: 1%;
}

.pageContent{
    background-color: rgba(255, 255, 255, 0);
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headerContent{
    background-color: rgb(0, 0, 0);
    width: 50%;
    height: 200px;
    border: 1px groove #ddd;
    display: flex;
    align-items: center;
}

.headerContent .headerButtons{
    color: white;
    background-color: rgba(0, 0, 255, 0.09);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 60%;
}

.headerContent .headerButtons span{
    width: 20%;
    text-align: center;
    background-color: rgba(255, 0, 0, 0.073);
    font-size: 15pt;
    padding: 2% 0;
    cursor: pointer;
}

.headerContent .headerButtons span:hover{
    scale: 1.1;
}

.bodyContent{
    background-color: rgb(0, 0, 0);
    width: 50%;
    min-height: 300px;
    max-height: 800px;
    border: 1px groove #ddd;
    transition: 2000ms;
    display: flex;
}

#posts{
    width: 100%;
    background-color: rgba(255, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 2000ms;
}

.preloader{
    background-image: url(../assets/gif/preloader.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 45, 133, 0);
}

.post{
    margin-top: 2%;
    margin-bottom: 2%;
    width: 80%;
    background-color: rgba(255, 0, 0, 0);
    border: 1px groove #ddd;
    color: rgb(255, 255, 255);
    transition: 500ms;
}

.post h1{
    margin: 0;
    padding: 0;
    text-align: center;
}

.post p{
    margin: 2% 0 0 5%;
}

.post hr{
    width: 50%;
}

.footerContent{
    background-color: rgb(0, 0, 0);
    width: 50%;
    height: 100px;
    border: 1px groove #ddd;
}

.moon{
    /* background-color: red; */
    background-image: url(../assets/image/moon-compressed.png);
    background-size: 40vh;
    background-repeat: no-repeat;
    filter: drop-shadow(1px 1px 5px white);
    background-position: center;
    transition: 100ms;
    width: 100vw;
    height: 100vh;
    animation: loadingMoon 5s infinite ease-in-out;
}

@keyframes loadingMoon {
    0%{
        filter: drop-shadow(1px 1px 5px rgb(105, 105, 105));

    } 
    50%{
        filter: drop-shadow(2px 2px 10px white);

    }
    100%{
        filter: drop-shadow(1px 1px 5px rgb(105, 105, 105));

    }
}

.secretTerminal{
    position: fixed;
    bottom: -20vh; /* Inicialmente escondido abaixo da tela */
    left: 0;
    width: 100vw;
    height: 20vh;
    background-color: rgba(0, 0, 0, 0.95);
    border-top: 2px solid #00ff00;
    padding: 10px;
    box-sizing: border-box;
    transition: bottom 0.3s ease-in-out;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.secretTerminal.show {
    bottom: 0; /* Mostra o terminal */
}

#terminalInput {
    background-color: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    width: 100%;
    outline: none;
    padding: 5px;
}

#terminalInput::placeholder {
    color: rgba(0, 255, 0, 0.5);
}