@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Niconne&display=swap");

/* Fonts */
/* font-family: 'Merriweather Sans', sans-serif;
font-family: 'Niconne', cursive; */

* {
  margin: 0;
  padding: 0;
}
:root {
  /* colors */
  --primary-text-color: #313131;
  --secondary-text-color: rgb(255 194 12);
  --primary-heading-color: #33cccc;
}
body {
  font-family: "Merriweather Sans", sans-serif;
  text-align: center;
  max-width: 100%;
  line-height: 1.5;
}
h1 {
  font-family: "Niconne", cursive;
  font-size: 80px;
  color: var(--primary-text-color);
}
h2,
h3,
h4,
h5,
h6 {
  font-size: 30px;
  font-family: "Niconne", cursive;
  color: var(--primary-text-color);
}
/* Top Section */
.hero {
  text-align: center;
  background: rgb(200 255 255);
  background: radial-gradient(
    circle,
    rgb(200 255 255) 0%,
    rgb(255, 255, 255) 100%
  );
  /* margin-bottom: 50px; */
}
.Vaibhav {
  font-family: "Niconne", cursive;
  font-size: 80px;
  color: var(--primary-text-color);
}
.Vaibhav span {
  color: var(--secondary-text-color);
}
.me-info p {
  color: rgb(49, 49, 49);
  font-weight: 700;
  font-size: 20px;
}
.me-info p span {
  text-decoration: underline;
}
.clouds {
  width: 120px;
}
.cloud-1 {
  position: relative;
  left: -150px;
}
.cloud-2 {
  position: relative;
  right: -150px;
}
.mountain {
  margin-bottom: 50px;
  box-shadow: rgba(150, 90, 68, 0.52) 0px 5px, rgba(128, 60, 21, 0.3) 0px 10px,
    rgba(139, 52, 17, 0.2) 0px 15px, rgba(240, 46, 170, 0.1) 0px 20px,
    rgba(240, 46, 170, 0.05) 0px 25px;
}

/* Hero/Top Section */

/* profile */
.profile {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* background: radial-gradient(
    circle,
    rgb(255, 255, 255) 30%,
    rgb(202, 255, 255) 100%
  ); */
}
.profile img {
  width: 150px;
}

.profile-info {
  width: 50%;
}
.profile .profile-info h2 {
  color: var(--primary-heading-color);
}
.profile .profile-info hr {
  margin-top: 40px;
  border: none;
  height: 2px;
  background: var(--primary-heading-color);
}

/* /profile */

/* cards */
.cards {
}
.cards .card-box {
}
.cards .card-box .content {
  width: 50%;
  margin: 50px auto 50px auto;
  text-align: left;
  line-height: 1.5;
}
.cards .card-box .content img {
  width: 100px;
  float: left;
  margin-right: 20px;
}
.cards .card-box .content .paint {
  float: left;
}
.cards .card-box .content .shop {
  float: right;
}
.do h1 {
  /* background: linear-gradient(90deg, #e8ffff 0%, #c4ffff 100%); */
  width: 50%;
  margin: auto;
  background: radial-gradient(
    circle,
    rgb(200 255 255) 0%,
    rgb(255, 255, 255) 100%
  );
  color: var(--primary-heading-color);
}
.do .cards .card-box .content h2 {
  color: var(--primary-heading-color);
}
/* /cards */

/* Message me */
.message-me {
  margin-bottom: 50px;
}
.message-me .content {
  padding: 10px;
  width: 50%;
  margin: 20px auto 20px auto;
  background: radial-gradient(circle, #c8ffff 0%, #ffffff 100%);
}
.message-me .content h1 {
  color: var(--primary-heading-color);
}
.message-me button {
  padding: 10px 20px;
  background-color: var(--primary-heading-color);
  color: var(--primary-text-color);
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.message-me button:hover {
  background-color: var(--secondary-text-color);
  transition: 0.3s;
}
/* /Message me */

/* Footer */
.footer {
  padding: 20px;
  background: #c8ffff;
}
.footer ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
}
.footer ul li a {
  text-decoration: none;
  color: var(--primary-heading-color);
  font-weight: bold;
}
.footer a {
  color: var(--primary-heading-color);
}
/* /Footer */

/* Responsive Media Queries*/

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

  /* body{
    text-align: center;
  }
  h1 {
    font-size: 70px;
  }
  .Vaibhav{
    font-size: 70px;
  }
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 25px;
  }

  .mountain{
    width: 300px;
  } */
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
    h1 {
    font-size: 40px;
  }
  .Vaibhav{
    font-size: 50px;
  }
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 25px;
  }

  .mountain{
    width: 300px;
  }

  .clouds {
    width: 100px;
  }
  .cloud-1 {
    position: relative;
    left: -30px;
  }
  .cloud-2 {
    position: relative;
    right: -30px;
  }
}
/* /Responsive Media Queries*/
