body{
    background-color: #231942;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.topContainer{
    background-image: url(image.png);
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.topModifier{
    /*background-color: rgba(0, 0, 0, 0.397);*/
    /*backdrop-filter: blur(10px);*/
    width: 100%;
    height: 100%;
    position: relative;
}
.header{
    width: 90%;
    height: 7%;
    border-radius: 20px;
    background-color: #5e548e99;
    backdrop-filter: blur(10px);
    position: absolute;
    left: 5%;
    top: 1%;
    box-shadow: 0 0 5px #5e548e99, 0 0 10px #5e548e99;
}
.buts{
    background-color: #23194299;
    backdrop-filter: blur(10px);
    border: none;
    margin-left: 2%;
    height: 80%;
    min-width: 7%;
    border-radius: 20px;
    color: aliceblue;
    margin-top: .5%;
    padding-left: .5%;
    padding-right: .5%;
    box-shadow: 0 0 5px #23194299, 0 0 10px #23194299;
    transition: all 0.3s ease;
}
.buts:hover{
    background-color: #9f86c099;
    box-shadow: 0 0 5px #9f86c099, 0 0 10px #9f86c099;
}
.mainText{
    background-color: #5e548e99;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    position: absolute;
    top: 30vh;
    left: 22vw;
    padding: 3%;
    color: aliceblue;
    width: 50%;
    box-shadow: 0 0 10px #5e548e99, 0 0 20px #5e548e99;
}
.topHanger{
    width: 25%;
    background-color: #5e548e99;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: aliceblue;
    padding: 2%;
    margin-left: 3%;
    box-shadow: 0 0 10px #5e548e99, 0 0 20px #5e548e99;
    transition: all 0.3s ease;
}
.topHanger:hover{
    background-color: #9f86c099;
    box-shadow: 0 0 5px #9f86c099, 0 0 10px #9f86c099;
    transform: scale(1.05);
}
.hangerContainer{
    position: absolute;
    width: 100vw;
    bottom: -100px;
    display: flex;
}
.secondPart{
    margin-top: 20%;
    background-image: url(cabel.png);
    width: 100vw;
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.secondText{
    width: 75%;
    height: 50%;
    position: absolute;
    left: 20px;
    top: 80px;
    background-color: #5e548e99;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: aliceblue;
    padding: 2%;
    box-shadow: 0 0 10px #5e548e99, 0 0 20px #5e548e99;
}
.thirdText{
    width: 75%;
    height: 50%;
    position: absolute;
    right: 20px;
    top: 80px;
    background-color: #5e548e99;
    box-shadow: 0 0 10px #5e548e99, 0 0 20px #5e548e99;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: aliceblue;
    padding: 2%;
}
.thirdPart{
    margin-top: 5%;
    background-image: url(workers.png);
    width: 100vw;
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;

}
@media (max-width: 1024px) {
  /* small laptop and tablets */
}

@media (max-width: 768px) {
  h2{
    font-size:28px;
  }
  p{
    font-size: 20px;
  }
  .buts{
    font-size: 12px;
    border-radius: 12px;
    min-width: 10%;
  }
}

@media (max-width: 600px) {
  .hangerContainer{
    display: block;
  }
  .topHanger{
    width: 80%;
    margin-left: 10%;
    margin-top: 3%;
  }
  .mainText{
    top: 15vh;
  }
  .hangerContainer{
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  p{
    font-size: 12px;
  }
  h2{
    font-size: 20px;
  }
  .mainText{
    width: 75%;
    left: 10vw;
  }
  .header{
    height: 5%;
  }
}

@media (max-width: 360px) {
  /* small phones */
}