/* Global Properties */
html {
    scroll-behavior: smooth;
  }
  
  body {
    background: rgb(135, 235, 185);
    font-family: "Baloo Tamma 2", cursive;
  }
  
  /* Main Heading Font */
  .m-heading {
    font-family: "Roboto Slab", serif;
  }
  
  /* Navigation */
  .navigation-link {
    border: 2px solid transparent;
  }
  
  .navigation-link:hover {
    text-decoration: none;
    border-bottom: 2px solid #f50909;
    transition: 0.5s ease;
  }
  
  /* Main Container height*/
  .main-container {
    height: 100vh;
  }
  
  /* Aligning items in main row */
  .main_row {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Changing Name Font sixe */
  .main_row h1 {
    font-size: 5rem;
  }
  
  /* Making the main image the size of the screen */
  .main_row img {
    width: auto;
    height: 100vh;
  }
  
  /* About Section */
  .about {
    background: #314a52;
    border-radius: 0.5rem;
  }
  
  .card {
    border-bottom: 8px solid #f50944;
  }
  
  /* Social Media Section */
  #social-media {
    background: #313552;
  }
  
  /* Add color to Social Media Links */

  .media_link {
    padding: 1rem;
    max-width: 15rem;
    margin-left: 1rem;
    border: 2px solid #5c09f5;
    border-radius: 0.5rem;
  }
