body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.teaser {
    background-color: #f0f0f0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 0 20px;
}
.tag{
    font-size: 30px;
}
.animated-text {
    font-size: 3em;
    animation: fadeIn 2s ease-in-out forwards;
    opacity: 0;
}

.para{
    animation: fadeIn 4s ease-in-out forwards;
    opacity: 0;
    font-size: 20px;
}
.btn{
    animation: fadeIn 4s ease-in-out forwards;
    opacity: 0;
    font-size: 15px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.company-vijay {
    color: black;
    font-size: 2em; /* Color for "VIJAY" */
    font-family:roboto;
    
}

.company-electricals {
    color: red; 
    font-size: 2em;/* Color for "ELECTRICALS" */
    font-family:roboto;
    
}

button {
    color: black;
    text-decoration: none;
    font-size: 25px;
    border: none;
    background: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
  }
  
  button::before {
    margin-left: auto;
  }
  
  button::after, button::before {
    content: '';
    width: 0%;
    height: 2px;
    background: red;
    display: block;
    transition: 0.5s;
  }
  
  button:hover::after, button:hover::before {
    width: 100%;
  }

  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
  }