* {
  box-sizing: 0;
  margin: 0;
  padding: 0;
}
li,
a,
button {
  text-decoration: none;
  color: black;
}

body {
  background: #eceff1;
  color: rgba(0, 0, 0, 0.87);
  font-family: sans-serif, Helvetica, Arial, sans-serif;
  background-image: url(img/lobstpurr.webp)
}
#projects {
  background: white;
  max-width: 360px;
  margin: 100px auto 16px;
  padding: 32px 24px;
  border-radius: 10px;
  display: inline-block;
  justify-content: center;
}
#downloads {
  background: white;
  max-width: 360px;
  margin: 100px auto 16px;
  padding: 32px 24px;
  border-radius: 3px;
}
#downloads h2 {
  color: #ffa200;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 8px;
  text-align: center;
}
#downloads h1 {
  font-size: 22px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 16px;
}
#downloads p {
  line-height: 140%;
  margin: 16px 0 24px;
  font-size: 14px;
}
#downloads a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: white;
  padding: 16px;
  border-radius: 4px;
}
#downloads,
#downloads a {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
#load {
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  font-size: 13px;
}
#platform {
  font-size: 12px;
}
#welcome {
  text-align: left;
  margin-left: 16px;
}

/* Navigation Bar */
#logo{
  cursor: pointer;
  margin-top: 0;
  margin-right: auto;
}
.nav__links {
  list-style: none;
}
.nav__links li {
  display: inline-block;
  padding: 0px 20px;
}
.nav__links li a {
  color: #000;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.nav__links li a:hover {
  color: rgb(16, 248, 229);
}
button {
  font-size: 16px;
  margin-left: 20px;
  padding: 9px 25px;
  background-color: rgb(219, 73, 255);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
button:hover {
  background-color: rgb(225, 106, 255);
}
#dl {
  display: none;
}
/* Downloads */
.app_button {
  color: white;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.enabled {
  background: #039be5;
}
.disabled {
  background: grey;
  cursor: default;
}
.app_button:hover.enabled {
  background: #0086c9;
}

/* About Me*/
#resumelink {
  font-size: unset;
  color: blue;
  text-decoration: none;
}

/* Footer & Header */
header {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 10%;
  margin-bottom: 20px;
  background-color: #fff;
}
footer {
  position: fixed;
  text-align: center;
  text-decoration: none;
  color: black;
  bottom: 0px;
  padding-top: 20px;
  width: 100%;
  background-color: #fff;
}
footer:visited {
  text-align: center;
  text-decoration: none;
  color: black;
}
#footsep {
  font-size: large;
}

/* Mobile View */
@media (max-width: 600px) {
  #home {
    display: none;
  }
  #sus {
    display: none;
  }
}

#sus {
  cursor: pointer;
}
.cool-button {
  background-color: #4CAF50; /* Green background */
  border: none; /* Remove border */
  color: white; /* White text */
  padding: 12px 24px; /* Some padding */
  text-align: center; /* Center text */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Display as inline-block */
  font-size: 16px; /* Font size */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow */
  transition: all 0.3s ease-in-out; /* Add transition */
}

.cool-button:hover {
  background-color: #3e8e41; /* Darker green on hover */
  cursor: pointer; /* Add cursor on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add bigger shadow on hover */
  transform: translateY(-2px); /* Move button up on hover */
}
