main {
    width: 100%;
    height: 100%;
    margin-top: 55px;
    padding: 8px;
    background-color: var(--background);
}

.monitor {
    width: 100%;
    height: auto;
    position: relative;
}

.monitor-container {
    position: relative;
}

h1 {
    display: none; /*Will this h1 (duplicate content so hidden) help accessibility?*/
}

#disable-typing-directive {
    display: inline-block;
    position: absolute;
    left: 57%;
    top: 1.5%;
    width: 100%;
    height: 5%;
    overflow: hidden;
    font-size: 0.7rem;
    color: var(--dark-bg);
    font-size: 0.5rem;
}

#disable-typing-directive.no-show {
    display: none;
}

.monitor-screen {
    display: inline-block;
    position: absolute;
    left: 5%;
    top: 7%;
    width: 90%;
    height: 62%;
    overflow-x: hidden;
    overflow-y: auto;
}


#screen-lines {
    font-family: "Courier New", Courier, monospace;
    color: var(--light-bg);
    padding: 0.2rem;
}

#additional-technologies {
    display: flex;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#additional-technologies.no-show {
    display: none;
}

#additional-technologies i {
    font-size: 3rem;
    color: var(--main-color);
    text-align: center;
}

.technology-example {
    display: flex;
    flex-direction: column;
    background-color: var(--dark-bg);
    padding: 8px;
    border-radius: 5px;
    margin: 8px;
}

a {
    text-decoration: none;
}

.technology-example svg {
    height: 5rem;
    fill: var(--fill);
}

.technology-example:hover {
    background-color: var(--background);
}

.technology-example span {
    margin: auto;
    text-align: center;
    color: var(--light-color);
}

#down-arrow {
    position: absolute;
    left: 95%;
    top: 85%;
    color: var(--light-color);
}

#down-arrow.no-show {
    display: none;
}

.fade-in {
    animation: fadeIn ease 1s;
}

@keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
}

.about {
    background-color: var(--dark-bg);
    padding: 0.1rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

#cursor {
    overflow: visible;
    height: 0.8rem;
    padding: 0;
    margin: 0;
    border-left: 1px solid var(--light-bg);
}

#cursor.no-show {
    visibility: hidden;
}

@media screen and (min-width: 417px) {
    #down-arrow {
        left: 96%;
        top: 93%;
    }
}

@media screen and (min-width: 769px) {
    #disable-typing-directive {
        display: inline-block;
        position: absolute;
        left: 65%;
        top: 1.8%;
        width: 100%;
        height: 5%;
        overflow: hidden;
        font-size: 0.7rem;
        color: var(--dark-bg);
        font-size: 1rem;
    }
    #down-arrow {
        left: 93%;
        top: 75%;
    }
}

@media screen and (min-width: 1025px) {
    #down-arrow {
        left: 90%;
        top: 60%;
    }
}