body {
    background-color: black;
    color: #33ff33;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 0 0 5px;
    display: grid;
    text-align: center;
    align-items: center;
    height: 100vh;
    animation: fade-in linear 3s ;
    min-height: 100vh;
}

.index {
    display:grid;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    min-height: 100vh;
    max-width: 1200px;
}

#terminal {
    color:#33ff33;
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    font-size: 20px;
    position:fixed;
    left:0;
    top:0;
    margin: 0;
}

.TextoC {

    position: relative;
    left: 0;
    top: 0;
    margin: 0;
}



.TextoI {

    position: relative;
    top: 0;
    margin: 0;
}

.coisa2 {
    width: 450px;
    height: 250px;
    position: relative;
    bottom: 0;
}

.coisa1 {
    width: 400px;
    height: 400px;
    position:relative;
    bottom: 0;
}

.coisa {
    width: 400px;
    height: 200px;
    position:relative;
    bottom: 0;
}

.cursor {
    animation: piscar 1s infinite;
    color: #33ff33;
    text-shadow: 0 0 5px #33ff33;
    vertical-align: top;
}

.typing {
    display: inline-block;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(19) forwards;
}

.typing2 {
    display: inline-block;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: typing2 2s steps(29) forwards;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 19ch;
    }
}

@keyframes typing2 {
    from {
        width: 0;
    }

    to {
        width: 35ch;
    }
}

@keyframes piscar {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

img {
    display: block;
    margin: auto;
}

@keyframes fade-in {
    
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

a {
    color: #33ff33;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: none;
    padding: 10px;
}


.top-left     { top: 0; left: 0; }
.top-right    { top: 0; right: 0; }
.bottom-left  { bottom: 0; left: 0; }
.bottom-right { bottom: 0; right: 0; }

.top-left {
    top: 20px;
    left: 20px;
}

.top-right {
    top: 20px;
    right: 20px;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
}

.card {

    width: 250px;
    height: 300px;
    border: 2px solid #33ff33;
    color:#33ff33;
    background-color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-family: monospace;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 0 10px #33ff33;
    transition: 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #33ff33;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.extras-body {
    display: block;
    height: auto;
    text-align: center;
    position:relative;
}

