
/*
* {
    border: 1px dashed red;
}
*/


@font-face {
  font-family: robotoRegular;
  src: url(fonts/Roboto-Regular.ttf);
}


main {
    padding-top: 3em;
}

.entry {
    background: rgb(420, 40, 40);
    color: rgb(255, 255, 255);
    padding: 2em;
    clip-path: polygon(
        1em 0%, 
        calc(100% - 1em) 0%, 
        100% 1em, 
        100% calc(100% - 1em), 
        calc(100% - 1em) 100%, 
        1em 100%, 
        0% calc(100% - 1em), 
        0% 1em
    );
    border: 0.2em solid rgb(10, 10, 10);
    transition: 0.2s color, 0.2s background-color;
}

.entry:hover {
    background: rgb(420, 100, 100);
}

#main-title {
    
    font-size: 40px;
    border-bottom: 1px solid rgb(200, 200, 200);
    width: 600px;
    margin: auto;
    text-align: center;
}

#whatisthisBox {
    font-size: 16px;
    margin-left: 2em;
    margin-top: 50px;
}
#whatisthisBox * {
    padding: 4px;
}
#whatisthisBox h2 {
    width: 160px;
    border-bottom: 1px solid rgb(200, 200, 200);
}


body {
    font-family: "Consolas", "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 100;
    margin: 0;
}

main {
    max-width: 1000px;
    margin: auto;
}


.outerProgramDiv {
    position: absolute;
    width: 200px;
    height: 200px;
    padding: 0;
    border-radius: 14px;
    border: 5px solid rgb(30, 30, 30);
}

.innerProgramDiv {
    box-sizing:border-box; /* Makes it so that it works the way i want it to */
    font-size: 24px;
    color: black;

    height: 200px;
    width: 200px;

    background-image: linear-gradient(160deg, rgb(225, 100, 255), rgb(225, 200, 155));
    padding: 10px;
    border-radius: 10px;
    border: 5px solid white;
    color: red;
}

.innerProgramDiv a:link {
  text-decoration: none;
}

.innerProgramDiv a:visited {
  text-decoration: none;
}

a:link, a:visited {
  color: rgb(50, 50, 50);
}
a:hover, a:active {
  color: rgb(50, 50, 150);
}

#theTable {
    margin-top: 50px;
    margin-left: 50%;
    cursor: pointer;
}


.infobox {
    margin-left: 20%;
    font-size: 16px;
    padding: 4px;
}
