* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

:root {
  --text-color: #b4a6eb;
  --purple: #43386e;
  --dark-purple: #272429;
}








.get-started-container {
  background-color: #b0c3ff;
  top: 420px;
  
  width: 280px;
  height: 43px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  left: 25%;
}

.get-started {
  height: 40px;
  width: 450px;
  height: 40px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  
  top: 5px;
  color: #fff;
}







header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

html{
  scroll-behavior: smooth;
}

.menu{
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 100vh;
  background-color: var(--purple) ;
  background: linear-gradient(135deg, var(--purple), var(--dark-purple));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  padding: 5rem;

  clip-path: circle(32px at 55px 55px);


  transition: 0.8s ease;
}

.menu.open{
  clip-path: circle(120% at 50% 50%);



}


.toggle-btn{
  position: absolute;
  top: 45px;
  left: 40px;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;


}


.toggle-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-color);
  transform-origin: left center ;
  transition: background-color 0.2 ease ;
}

.toggle-btn:hover span {
  background-color: #fff;
}

.toggle-btn.open span:nth-child(2){
  opacity: 0;
}
.toggle-btn.open span:nth-child(1){
  transform: rotate(45deg);
}
.toggle-btn.open span:nth-child(3){
  transform: rotate(-45deg);
}


.profile_img{
  margin:  2rem auto;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease-in ;

}

.menu.open .profile_img{
  opacity: 1;
  transition-delay: 0.2s ;
}

.profile_img img{
  width: 100%;

}


.username{
  font-size: 2rem;

  padding: 20px auto;
  display: flex;
  flex-direction: row;
  color: #fff;
  opacity: 0;
  transition: 0.3s ease-in ;
}
.menu.open .username{
  opacity: 1;
  transition-delay: 0.4s ;
}

.links{
  flex: 1;
  display: block;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease-in ;
}
.menu.open .links{
  opacity: 1;
  transition-delay: 0.5s ;
}

.links ul{
  list-style: none;
}
.links li{
  margin-top: 20px;
  padding: 15px;

}

.links li a{
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.3rem;

}


.links li a:hover,
.links li a.active
{
  color: #fff;
}





@media screen and (max-width: 600px) {
  #home,
  h1,
  h4,
  .expample-img,
  #project {
    /* Adjust the layout for smaller screens */
    display: block;
    margin-left: 0;
    text-align: center;
  }

  .expample-img {
    padding-left: 0;
    width: 100%;
    height: auto;
  }
}




body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

.section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2em;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
}

.section:nth-child(odd) {
  background-color: #e0e0e0;
}














section .contact {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 50px auto;
  width: 80%;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-header {
  background: #4285f4;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

.contact-header h1 {
  margin: 0;
  font-size: 2em;
}

.contact-section,
.contact-aside {
  float: left;
  width: 50%;
  box-sizing: border-box;
}

.contact-section {
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  color: #4285f4;
}

.contact-section p {
  color: #777;
}

.contact-form {
  margin-top: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #333;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: #4285f4;
  color: #fff;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
}

.contact-form button:hover {
  background: #3367d6;
}

.contact-aside {
  padding: 30px;
  background: #4285f4;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-aside h2 {
  color: #fff;
}

.contact-info p {
  color: #fff;
}

@media (max-width: 768px) {
  .contact-section,
  .contact-aside {
    width: 100%;
  }
}




















section .about {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.about-container {
  width: 90%;
  max-width: 800px;
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #333;
}

.about-container h1 {
  margin: 0 0 20px;
  font-size: 2em;
  color: #4285f4;
}

.about-section {
  margin-bottom: 20px;
}

.about-section p {
  margin: 0 0 15px;
  line-height: 1.5;
}

.about-section h2 {
  color: #4285f4;
}

.about-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.about-section ul li {
  margin-bottom: 8px;
}

.about-images {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.about-images img {
  width: calc(33.33% - 10px);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.about-images img:hover {
  transform: scale(1.1);
}







section .project{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.download-container {
  width: 90%;
  max-width: 800px;
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #333;
  text-align: center;
}

.download-container h1 {
  margin: 0 0 20px;
  font-size: 2em;
  color: #4285f4;
}

.download-section {
  margin-bottom: 20px;
}

.download-section p {
  margin: 0 0 15px;
  line-height: 1.5;
}

.download-button {
  display: inline-block;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #34a853;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.download-button:hover {
  background-color: #2b8a3e;
}














section .home {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.welcome-container {
  text-align: center;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 50%;
  
}

.welcome-message {
  font-size: 2em;
  margin-bottom: 20px;
  color: #4285f4;
}

.description {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}










section .setting {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex-direction: column;
}

.expense-container {
  width: 90%;
  max-width: 600px;
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #333;
  text-align: center;
}

.setting h1 {
  color: #4285f4;
}

.expense-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  color: #555;
}

input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  padding: 12px;
  background-color: #4285f4;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.setting button:hover {
  background-color: #3367d6;
}

.expense-list {
  margin-top: 20px;
  text-align: left;
}

.expense-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.delete-button {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.delete-button:hover {
  background-color: #c82333;
}

.setting canvas {
  margin-top: 30px;
}