/* style_global.css */

body {
    font-family: 'voidpixel', 'Courier New', Courier, monospace;
    font-size: 1.5vw;
    margin: 0;
    padding: 0;
    min-height: calc(100vh - 10px);

    overflow-x: hidden;
    color:black;
    position: relative;
}

img {
    display: block;
}

p { 
    margin:0; 
}

.link {
    display: inline-block;
    transition: all 0.7s ease;
    color: inherit;
    text-decoration-style: dotted;
    
}

.link:hover {
    transform: scale(1.1) rotate(2deg);
    
}

.background {
    margin: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    height: 100%;
}


.relative {
    margin: 0;
    padding: 0;
    width: 100%;
    max-height: 900px;
    position: relative;
    
}

.textbox {
    position: absolute;
    padding: 3vw;
    color: #E3C1A0;
    text-align: justify;
    font-size: 1.9vw;
    border-image-source: url('../assets/img/global/border3d.png');
    border-image-repeat: round;
    border-image-slice: 183;
    border-image-width: 4.5vw;
    border-image-outset: 2.5vw;
    background-color: #1e0f1deb; 
}

.textpulse {
    animation: textpulseanim 3s ease-in-out infinite;
    cursor: pointer;
}

@keyframes textpulseanim{
    0%{transform: scale(1);}
  50%{transform: scale(1.01);}
  100%{transform: scale(1);}
}

.reply{
    display: inline-block;
    font-family: 'voidpixel', 'Courier New', Courier, monospace;
    font-size: 1.7vw;
    background-color: #ff953892;
    color: #1e0f1d ;
    border-radius: 8px;
    padding: 0.5vw;
    cursor: pointer;

    transition: opacity 2s linear;

}

.typewriter::after {
    content: '|';
    margin-left: 5px;
    animation: blink 0.9s infinite;
  }
  
  @keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0; }
  }


