html,
body,
.grid-container {
    height: 100%;
    margin: 0;
    background: #1E1E1E;
    font-family: Consolas, monaco, monospace;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr repeat(2, minmax(450px, 60px)) 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 0px 0px;
}

.profileimage {
    grid-area: 1 / 2 / 2 / 3;
    width: 300px;
    height: 300px;
    overflow: hidden;
}

.profileimage img {
    width: 100%;
    height: auto;
    border-radius: 60%;
}

.profile {
    grid-area: 1 / 3 / 2 / 4;
    color: #9ADCFF;
}

.popupimage {
    grid-area: 3 / 4 / 3 / 5;
    margin-top: -20px;
    margin-left: -20px;
}

.objective {
    grid-area: 3 / 2 / 2 / 4;
    color: #EDECE3;
    text-align: center;
    font-size: 5em;
}

table {
    width: 450px;
    margin-top: 50px;
    margin-left: -150px;
}

thead {
    text-align: left;
    vertical-align: left;
}

tr {}

th {
    float: left;
}

.vsorange {
    float: left;
    color: #CF9176;
}

.hacking-animation {}

.hacking-animation__text {
    bottom: 0;
    font-family: monospace;
    font-size: 18px;
    left: 0;
    line-height: 1.5rem;
    padding: 2rem;
    position: absolute;
    right: 0;
}

.hacking-animation__character {
    animation: type 500ms linear;
    color: #EDECE3;
}

@keyframes type {
    0% {
        background: #EDECE3;
        color: #EDECE3;
    }
    5% {
        background: transparent;
        color: #EDECE3;
    }
    100% {
        background: transparent;
        color: #EDECE3;
    }
}

.hidden {
    display: none;
}