@font-face {
    font-family: 'firacode';
    src: url('../fonts/firacode.woff2') format('woff');
    font-weight: 400;
    font-style: normal;
}

.section {
    height: 100vh;
    width: 100%;
    transition: background 0.3s;
}

.section {
    padding-left: 20px;
    background-color: rgb(20, 20, 20);
    color: rgb(255, 255, 255) !important;
}


.container {
    margin: 0 auto;
    max-width: 1000px;
    font-family: firacode;
}

.cmd_input {
    outline: 0;
    background-color: #00000000;
    color: white;
    border: 0;
    font-family: firacode;
    margin-left: 2px;
}

#terminal {
    background-color: rgb(28, 28, 28);
    padding: 20px;
    border-radius: 10px;

    animation: intro forwards 1s;
}

@keyframes intro {
    from {
        filter: blur(6px);
        opacity: 0;
        scale: 1.1;
    } to {
        opacity: 1;
        scale: 1;
        filter: blur(0);
    }
}

#terminal {
    border: 1px solid rgba(128, 128, 128, 0.26);
}

.dot {
  display: inline-block;
  width: 15px; 
  height: 15px;      
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}

.dot:nth-child(1) {
    background-color: #FF605C;
}
.dot:nth-child(2) {
    background-color: #FFBD44;
}
.dot:nth-child(3) {
    background-color: #00CA4E;
}

a {
    text-decoration: none;
}

.muted {
    color: gray;
}

#project_link {
    color: white;
    text-decoration: none;
}