.wrapper {
    display: flex;
    flex-direction: column;
    width: 100vw; 
    height: 100vh;
    background-image: url("./imgs_and_pdf/Application_UI/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    background-attachment: fixed;
    background-color: rgb(196, 196, 197);
    background-blend-mode: multiply;
}
  
.content {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.8fr 1fr 2fr;
    padding: 50px;

}

.topText{
    width: 100%;
    height: 100%;
}

.topText h1{
    color: whitesmoke;
    font-size: 45px;
    font-weight: 700;
    padding-bottom: 30px;
}

.topText h3{
    color: white;
    font-size: clamp(20px, 2.5vh, 30px);
    font-weight: 600;
    text-shadow: 1px 1px 5px #ffcab0; 
}

.middleText{
    width: 100%;
    height: 100%;
}

.middleText h1{
    color: orange;
    font-size: 25px;
    font-weight: 700;
    padding-left: 30px;
}

.middleText ul li{
    color: yellow;
    font-size: 20px;
    font-weight: 500;
    margin-left: 70px;
}

.bottomPic{
    width: 200px;
    height: 100%;
}

.bottomPic img{
    width: 100%;
    padding-left: 70px;
}

.wrapper h5{
    color: aliceblue;
    font-size: 5px;
    opacity: 0;
}

@media (max-width: 768px){
    .wrapper {
        width: 100%;
        height: 100%;
    }
      
    .content {
        height: 100%;
    }
    
}

.footer {
    width: 100vw;
    background-color: rgb(100, 54, 226, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(8px, 0.7vw, 15px);
    font-weight: 0;
    position: absolute;
    bottom: 0;
    color: yellow;
  }

  @media (max-width: 1100px) {
    .footer {
        position: relative;
    }
  }