@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,900;1,200;1,600;1,700&display=swap');

* {
    box-sizing: border-box;
}

body {
    background: rgb(188,222,255);
    background: linear-gradient(90deg, rgba(188,222,255,1) 0%, rgba(88,140,194,1) 46%, rgba(57,109,149,1) 100%);
    font-family: "Source Sans Pro", sans-serif;
    margin: 0;
    color: white; /* the color of the text */
    display: flex; /* centers the text */ 
    flex-direction: column; /* centers everything in a column */
    align-items: center; /* centers everything */
    min-height: 100vh;
    margin: 0;
}

li {
    float: right; /* makes the list aligned on a single line */ 
}

/* styling for the links a */ 
a {
    padding: 15px; /* spacing between the links */ 
    color: white; /* color of the text */ 
    font-size: 30px; /* size of the text */ 
  }


a:link { text-decoration: none; }

a:visited { text-decoration: none; }

a:hover { text-decoration: none; }

a:active { text-decoration: none; }

.home_container {
        
        background-color: #303030;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        width: 1000px;
        height: 600px;
}

.editor {
    padding: 2.5px;
    text-align: left;
}

.terminal {

    padding: 2.5px;
    background-color: #757575;
    width: 1000px;
    height: 100px;
}


.file_names {
    background-color: #575656;
    padding: 15px;
    width: 200px;
    height: 400px;

}


.AboutMeText {
    display: inline;
    width: 1000px;
    height: 1000px;
    text-align: center;
}
