@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200;1,300;1,400&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans' sans-serif;
}
body{
    background-color: #ededed;
}
.bolt-advertisement{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 100px;
}
.bolt-poster{
    position: relative;
    background-color: #3bc34a;
    padding: 20px 40px ;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0 ,0.8);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}
.bolt-poster::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3bc34a;
  animation: revealDown 1s ease forwards;
  animation-delay: 0.3s;
  z-index: 2;
}
.bolt-poster:hover{
    box-shadow: none;
}
.bolt-poster h1{
    color: #ededed;
    font-size: 40px;
    font-weight: 600;
}
.bolt-poster .circle{
    background-color: #ededed;
    padding: 0px 6px 0px 8px;
    border-radius: 100%;
    margin-left: 30px;
}
.bolt-input {
    margin-top: -10px;
    position: relative;
    display: inline-block;
}

.bolt-input .search {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.bolt-input input {
    position: relative;
    width: 290px;
    height: 40px;
    font-size: 18px;
    padding: 10px 10px 10px 35px;
    box-sizing: border-box;
}
.bolt-bottom{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.bolt-bottom h2{
    position: relative;
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}
.bolt-bottom h2::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#ededed;
  animation: revealDown 1s ease forwards;
  animation-delay: 0.3s;
  z-index: 2;
}
.bolt-buttons {
  display: flex;
  position: relative;
  gap: 20px;
}
.bolt-buttons::before{
   content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ededed;
  animation: revealDown 1s ease forwards;
  animation-delay: 0.3s;
  z-index: 2;
}
.store-btn {
  display: flex;
  align-items: center;
  background-color: black;
  color: #ededed;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.store-btn:hover {
  background-color: #222;
}
.store-btn i {
  font-size: 30px;
  margin-right: 15px;
}
.store-btn .text {
  font-size: 16px;
  line-height: 1.2;
}
.store-btn .text span {
  font-size: 20px;
  font-weight: bold;
}
@keyframes revealDown{
  0%{
    height: 100%;
  }
  100%{
    height: 0;
  }
}