* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    font-size: xx-large;
    width: fit-content;
    background-color: #f4f4f417;
    padding: 3px 10px;
    border-radius: 30px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    color: #ffbb33;
}

.dropdown {
  background-color: #f4f4f417;  /* translucent light background like .header */
  color: #ffbb33;               /* golden yellow text */
  border: none;
  padding: 8px 6px;
  border-radius: 30px;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dropdown:focus ,
.dropdown:hover {
  outline: none;
  box-shadow: 0 0 2px #ffbb33;
}

option {
  background-color: #000000;  /* matches body background */
  color: #ffbb33;
}

.btn {
  background-color: #f4f4f417;  /* translucent light background like .header */
  color: #ffbb33;               /* golden yellow text */
  border: none;
  padding: 8px 6px;
  border-radius: 30px;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  outline: none;
  box-shadow: 0 0 2px #ffbb33;
}

.description-box {
  background-color: #f4f4f417; /* matching translucent background */
  color: #ffb30071;              /* golden text */
  padding: 2px 5px;
  border-radius: 20px;
  margin-top: 5px;
  max-width: 800px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 0 10px rgba(255, 187, 51, 0.1);
}

.array-box {
    background-color: #f4f4f417;
    margin: 20px;
    margin-top: 30px;
    padding: 8px;
    height: 60vh;
    width: 60vw;
    display: flex;
    align-items: flex-end;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: fixed;
    bottom: 0;
    background-color: #d9d9d912;
    width: fit-content;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.icon {
    width: 25px;
    height: 25px;
    margin: 0px 10px;
}

#git-icon {
    width: 45px;
    height: 45px;
}

#linkedin-icon {
    margin-right: 17px;
}







