.image {
  border: 2px solid red;
}
.image img {
  width: 50vw;
  height: 40vh;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  display: flex;
  height: fit-content;
  overflow: hidden;
}

.aside {
  width: 15%;
  background-color: #141313;
  color: #fff;
  padding-top: 19px;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.navbar ul li {
  margin: 20px 0;
}

.navbar li:hover {
  transform: scale(1.3);
  transition: ease-in-out 0.2s;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding-top: 10%;
}
#home {
  color: orange;
}
#home:hover {
  color: white;
}

/* Existing styles... */

.buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 23px;
  margin: 10px;
  background-color: black;
  color: orange;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: white;
  color: black;
}
/* Animation Styles */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-down {
  animation: slideDown 0.8s ease-in-out;
}

.resume {
  /* border: 2px solid green; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  min-width: 50%;
}
.resume img {
  width: 65vw;
  height: auto;
}

/* Media Query */
@media (max-width: 768px) {
  body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents body scroll */
  }

  .container {
    /* border: 2px solid firebrick; */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure full height on smaller screens */
    overflow: hidden; /* Avoid scrollbars */
    margin: 0; /* Remove margin to maximize space */
    padding: 0;
  }

  .aside {
    width: 30%; /* Full width for better visibility */
    border-radius: 10px;
    padding: 10px;
    text-align: center; /* Center content */
  }

  .navbar ul {
    flex-direction: column;
    justify-content: space-around;
    height: auto; /* Adjust height to fit content */
    margin-top: 5px; /* Adjust margin for better alignment */
  }

  .navbar ul li {
    margin: 10px; /* More space between items */
  }

  .resume {
    /* border: 2px solid green; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0; /* Space around the resume */
  }

  .resume img {
    width: 100%; /* Adjust width to fit screen without overflow */
    height: 55vh; /* Maintain aspect ratio */
  }
}

