* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 94px;
}

.container {
margin-left:80px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
     align-items: center;
    height: 415px;
}

.logo h1 {
    color: #ff3d57;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}
#invite_heading{
    font-weight: 800;
    font-size: 45px;
    color: orangered;
    text-align: center;
    }

#invite_paragraph{
   font-weight: 700;
   font-family: math;
   line-height: 45px;
   text-align: center;
}
#invite_link{
    text-decoration: underline;
    font-size: 21px;
    color: #2ab4a4;
}


/* Small mobile devices (landscape and portrait) */
@media (max-width: 575.98px) {
  .container {
   margin-left: 0px; 
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    height: 415px;
    padding: 28px;
} 
.dd{
  padding: 20px;
}
/* Styles for small mobile devices */
  }
  
  /* Large mobile devices (landscape and portrait) */
  @media (min-width: 576px) and (max-width: 767.98px) {
    .container {
      margin-left: 0px; 
            padding: 20px;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      height: 415px;
      padding: 28px;
  }
  .dd{
    padding: 20px;
  }
  }
  
  /* Tablets (portrait) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    /* Styles for tablets in portrait mode */
  }
  
  /* Tablets (landscape) */
  @media (min-width: 992px) and (max-width: 1199.98px) {
    /* Styles for tablets in landscape mode */
  }
  /* Small laptops */
  @media (min-width: 1200px) and (max-width: 1399.98px) {
    /* Styles for small laptops */
  }
  
  /* Large laptops */
  @media (min-width: 1400px) and (max-width: 1599.98px) {
    /* Styles for large laptops */
  }
  /* Desktops and larger screens */
  @media (min-width: 1600px) {
    /* Styles for desktops and larger screens */
  }
  