.skillsPage{
    padding-top: 150px;
    padding-bottom: 250px;
    background-image: url(../img/skillsBackground.png);
    margin-bottom: 200px;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    display: flex;
    flex-direction: column;
}

.skillsTitle{
    font-size: 20vw;
    margin: 0px auto;
    display: inline-block;
    /* background-image: url(../img/dragon.png); */
    background-color: white;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-attachment: fixed;
    letter-spacing: 9px;
}

.terminalBar{
    height: 40px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    background-color: #595959;
    border-bottom: 5px solid black;
    display: flex;
    align-items: center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}
.terminalBar img{
    height: 30px;
    margin-left: 20px;
}

.terminalWindow{
    width: 80vw;
    /* height: 700px; */
    margin: 0 auto;
    background-color: #353535;
    color: white;
    border-radius: 20px;
    font-size: 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* padding: 50px; */
    border: 5px white solid;
}

@media only screen and (max-width: 1000px) {
    .terminalWindow {
        font-size: 1rem;
    }
}



.terminalWindowText{
    margin: 50px 50px 0px 50px;
}
.terminalTable table{
    border-bottom: 4px gray dashed;
    width: 100%;
}
table th{
    text-align: left;
    border-top: 4px gray dashed;
    border-bottom: 4px gray dashed;
    padding: 15px;
}
table td{
    padding-left: 20px;
    padding-bottom: 10px;
    color: rgb(60, 187, 60);
}
.firstRow{
    padding-top: 15px;
}
.bottomRow{
    padding-bottom: 15px;
}
.column2{
    border-left: 3px gray dashed;
}
.greenText{
    color: rgb(60, 187, 60);
}
.resumeLink:hover{
    cursor: pointer;
    color: rgb(114, 114, 114);
}

