* {
    margin: auto;
    font-family: "Kanit", sans-serif;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


header .nav {
    background-color: rgb(38, 117, 88);
    font-size: 2em;
    color: white;
    text-decoration: none;
}

header .nav ul {
    list-style-type: none;
    display: flex;
    margin: 0em;
    padding-top: 0em;
    padding-left: 0em;
}

.nav ul li {
    width: 25%;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    text-align: center;
}

.nav ul li:hover{
    background-color: aquamarine;
}

header .nav a {
    text-decoration: none;
    color: white;
}

h2 {
    color : rgb(38, 117, 88);
    font-size: 270%;
    margin-top: 1em;
    text-align: center;
}

.Project {
    text-decoration: underline;
}

.content{
    display: flex;
}

.card {
    background-color: rgb(38, 117, 88);
    padding: 0.5em;
    margin-top: 2em;
    width: 17em;
    border-radius: 1em;
}

.card:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.line1 {
    display:grid;
}

img {
    width: 17em;
    border-radius: 0.5em;
}

.content p {
    color: white;
    text-decoration: underline;
}

.content div{
    display:table;
}

footer{
    background-color: rgb(38, 117, 88);;
    text-align: center;
    color: white;
    margin-bottom: -43%;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom:0.2%;
    padding-top: 1%;
}

.linkedin {
    width: 3.75em;
    margin-top: 0.5em;
}

.github {
    width: 2em;
}

body::-webkit-scrollbar {
    width: 12px;
  }
  
body::-webkit-scrollbar-track {
    background: white;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(38, 117, 88); 
    border-radius: 1px; 
}




