html body {
    padding: 0;
    margin: 0;
    font-size: 30px;
}

p {
    text-align: left;
    margin-top:6px;
}

.content {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333333;
}

/*https://caglrc.cc/~svo/glasstty/*/
@font-face {
    font-family: 'glass_tty_vt220medium';
    src: url('../media/fonts/glass_tty_vt220-webfont.woff2') format('woff2'),
         url('../media/fonts/glass_tty_vt220-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 200px rgb(0, 0, 0) inset;
    z-index: 10;
}

.text-glow {
    text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #56d40d, 0 0 3px #56d40d, 0 0 5px #56d40d;
	font-size: 1em;
	text-align: center;	  	
   }

.terminal {
	font-family: "glass_tty_vt220medium";
	color: #56d40d;
    text-align: left;

	margin-left: 5%;
	margin-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.caret {
    margin-right: 10px;
    display: none;
}

.bootup {
    display: none;
}

.group {
    display: flex;
}

.typewriter_caret {
    animation: blink 1.2s infinite;
    display: none;
}

@keyframes blink {
	0%,
	50% {
		opacity: 1;
	}
	51%,
	100% {
		opacity: 0;
	}
}
.line2 {
    display: none;
}

.typewriter {
	text-align: left;
	margin-left: 10px;
	margin-top: 10px;
}
.text-animation .typewriter_caret {
	animation: blink 1.2s infinite;
	color: #fff;
	display: none;
}

@media (max-height: 700px) {
    #home, #about, #contact, #work, #projects, #settings {
        height: calc(100% - 50px);
        top:50px;
    }
}

@media (max-width: 700px) {
    html body {
        font-size: 20px;

    }

    .terminal {
        margin: 10px;
        overflow: none;
    }

    .group {
        font-size: 20px;
    }
}