body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures the body takes full viewport height */
    background-image: url('images/L-bg.png'); /* Replace with your image path */
    background-size: cover; /* Covers the entire background */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents image repetition */
    color: white; /* Text color for better contrast on a dark background */
    text-align: center;
}

.container {
    /* background-color: rgba(0, 0, 0, 0.7);  */
    padding: 40px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.exclamationMark {
  color: #4ad59e;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
}
.icons i {
  color: #042825;
  background: #fff;
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.icons i:hover, .icons i:active {
  color: #fff;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
  
}