header {
  width: 100%;
  height: auto;

  background-color: rgb(49, 0, 102);
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav {
  width: 40%;
  height: auto;
  margin-left: 30%;
  /* background-color: aqua; */
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

#login-btn {
  width: 100px;
  height: 35px;
  background-color: rgb(255, 0, 119);
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

#hero {
  width: 100%;
  height: 70vh;
  background-image: linear-gradient(
      rgba(16, 0, 59, 0.4),
      rgba(255, 0, 119, 0.25)
    ),
    url("../Resources/Desk.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 24px rgba(16, 0, 59, 0.2);
  /* border-radius: 16px; */

  color: white;
  font-size: large;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#get-started-btn {
  width: 150px;
  height: 40px;
  background-color: rgb(255, 0, 119);
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

#login-btn:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border: 2px solid white;
  border-radius: 5px;
  cursor: pointer;
}

#get-started-btn:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border: 2px solid white;
  border-radius: 5px;
  cursor: pointer;
}

.tabs {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 35px;
}

.tabs button {
  background-color: rgb(49, 0, 102);
  color: white;
  padding: 14px 16px;
  font-size: 1.3vw;
  border: 1px;
  border-color: rgb(138, 43, 226);
  cursor: pointer;
  border-radius: 5px;
}

.tabs button:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(138, 43, 226);
  border: 2px solid rgb(138, 43, 226);
  border-radius: 5px;
  cursor: pointer;
  border-style: dashed;
}

.tab-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-transform: wrap;
}

.tab-content p {
  width: 15%;
  height: auto;
  font-size: 1.2vw;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  border: 1px solid rgb(138, 43, 226);
  border-radius: 5px;
  padding: 20px;
}

.box {
  width: 84%;
  height: auto;
  border: 2px solid rgb(138, 43, 226);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  justify-content: center;
  overflow: hidden;
  padding: 15px;
  /* text-wrap: wrap; */
}

.box img {
  width: 25vw;
  height: 32vh;
  border: none;
  border-radius: 10px;
}

#box1 {
  background-color: rgb(255, 240, 240);
}
#box2 {
  background-color: rgb(240, 255, 242);
}
#box3 {
  background-color: rgb(240, 248, 255);
}

.article {
  width: 80%;
  height: 250px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2vw;
  line-height: 1.6;
  text-align: justify;
  overflow: auto;
  overflow-x: scroll;
  overflow-y: scroll;
  background-color: rgb(246, 240, 255);
  border-radius: 10px;
  padding: 30px;
}

.frame {
    font-family: Arial, Helvetica, sans-serif;
}

.subbox {
  display: flex;                 
  align-items: center;           
  justify-content: space-between;
  gap: 20px;                    
}

.subbox p {
  flex: 1;
  text-align: justify;
}


footer {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: rgb(49, 0, 102);
  color: white;
  padding: 5px 20px 20px;
  margin-top: 15px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
}

.footer-container h3,
.footer-container h4 {
  margin-bottom: 10px;
  color: rgb(255, 0, 119);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
  color: rgb(255, 0, 119);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
  font-weight: 400;
  font-size: 16px;
}

