/*General elements styled*/ 
header{
    text-align: center;
    font-size: large;
}

h1{
    display: block;
    text-align: center;
    font-size: 3em;
    font-family: "Comic Sans";
    font-style: bold;
}

h3{
    font-family: "Times New Roman";
    font-weight: 600;
    font-style: bold;
    font-size: large;
}

label{
    text-align: center;
    justify-content: center;
    display: inline-block;
    padding-left: 35%;
}

button{
    background-color: lightblue;
    font-size: 90%;
    font-weight: bold;
}

/*Elements with IDs styled*/ 
#trash_table{
    width: 50%;
    height: 100%;
    border: 2px solid;
    background-color: lightblue;
}

#testo1{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    border: 1px solid gray;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.5);
    text-align: center;
}

#my_p{
    font-size: 2.5em;
}

#GitHub_Icon{
    display: inline-block;
    border-radius: 50%; 
}

#logo{
    display:block; 
    margin: auto; 
}

#table_buttons{
    text-align: center;
    justify-content: center;  
    align-items: center;  
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    overflow: hidden;
    font-size: 90%;
    cursor: pointer;
}

#testo2{
    align-items: center;
    margin-left: 8%;
}

/*Code snipped altered from: https://www.w3schools.com/howto/howto_css_about_page.asp --------------*/
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}

.card {
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.5);
  border:1px solid gray;
  margin: 8px;
}

.container {
  padding: 2px 16px;
}
/*----------------------------------------------------*/

/* This section of CSS is designated for phone screen viewing */
@media screen and (max-width:650px){
    #trash_table{
        font-size: 90%;
        font-family: "Comic Sans";
    }
    #profile_pic{
        width:30%;
    }
    #GitHub_Icon{
        width:12%;
    }
    #LIN{
        width:12%;
    }
    #testo1{
        width:80%;
    }
    #testo2{
        margin-left: -10%;
    }
    .column {
        width: 100%;
        display: block;
  }
}