<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.col-1 {
  width: 8.33%;
}
.col-2 {
  width: 16.66%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33%;
}
.col-5 {
  width: 41.66%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33%;
}
.col-8 {
  width: 66.66%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33%;
}
.col-11 {
  width: 91.66%;
}
.col-12 {
  width: 100%;
}
:root {
  --color1: #75003b;
  --color2: #ff9b73;
  --color3: #58caff;
}

body {
  margin: auto;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hiddden;
}
/* navbar design starts here  */
.bars {
  display: none;
}

.navbar .logo {
  text-align: left;
}
.navbar h1 {
  color: rgb(0, 0, 0);
  margin: 0;
  padding-top: 10px;
  background-color: rgba(88, 185, 192, 0);
}

.heading h1 {
  text-align: right;
}

.navbar {
  background-color: var(--color2);
  padding: 3% 7%;
  width: 100%;
  text-align: center;
}

.navbar .menu {
  flex-direction: row;
  justify-content: flex-end;
  padding-top: 20px;
}
.menu a {
  padding: 5px 10px;
  margin: 5px 2px;
  background-color: transparent;
}
.cont .contact {
  width: 100%;
}
.more {
  top: 40px;
  width: 100%;
}

.more a {
  display: block;
  margin: 5px;
  padding: 5px;
  color: black;
  background-color: gray;
}
/* navbar design ends here  */
/* profile design starts here  */
.profile .top-weather-icon {
  right: 100px;
  width: 120px;
  transition: width 2s, transform 2s;
}

.profile .top-weather-icon:hover {
  width: 140px;
}

.profile-desc h1 {
  padding: 10px 20px;
}
.profile-desc p {
  color: rgb(0, 0, 0);
  margin: 0 auto;
  width: 50%;
  text-align: center;
  margin-bottom: 10px;
}

.profile .bottom-weather-icon {
  bottom: 20px;
  left: 140px;
  width: 120px;
  transition: width 2s, transform 0.3s;
}

.profile .bottom-weather-icon:hover {
  width: 140px;
}
/* profile design ends here  */

/* about me design starts here  */

.aboutme-image {
  margin-top: 100px;
}
.about-me {
  position: relative;
}
.aboutme-image img {
  height: 270px;
  width: 250px;
  position: absolute;
  left: 15%;
  top: 25%;
}

.aboutme-desc p {
  text-align: left;
}
/* about me design ends here  */
.professional-experience {
  padding: 1% 5%;
}
/* professional-experience ends here */
.card_sec {
  display: flex;
  text-align: center;
}
.card1 {
  margin: 0 1%;
  transition: all 0.3s;
  height: 500px;
}
.card1:hover {
  transform: scale(1.05);
}
/* achievement-contact starts here  */
.achievemnet-contact {
  display: flex;
  align-items: self-start;
  justify-content: space-between;
}

.contact-links,
.contact,
.achievement {
  flex: 1;
  padding: 10px;
}

.contact button {
  width: 150px;
}

.contact-links {
  position: relative;
}

.media-buttons {
  position: absolute;
  margin-top: 200px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* achievement-contact ends here  */

/* footer starts from here  */
.footer {
  width: 100%;
}
.footer-menu {
  margin-top: 12px;
}

.footer-menu a {
  display: inline;
  margin: 10px;
}
.footer-menu a:hover {
  color: var(--color3);
  transform: scale(1.1);
}
/* footer ends here  */
</pre></body></html>