.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    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(183, 183, 185);
    background-blend-mode: multiply;
}

.content {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto-fit, 1fr);
    gap: 10px;
    padding: 20px 20px 50px 50px;
    margin-top: 20px;
}

.topText{
    width: 100%;
    height: 100%; 
    padding-bottom: 10px;
}

.topText h1{
    color: whitesmoke;
    font-size: 45px;
    font-weight: 700;
    padding-bottom: 25px;
}

.topText h2{
    color: orange;
    font-size: 35px;
    font-weight: 700;
}

.middleText{
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
}

.middleText h1{
    color: yellow;
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 5px;
    padding-left: 30px;
}

.middleText h2{
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px;
    padding-left: 30px;
    text-shadow: 1px 1px 5px #ffcab0; 
}

.middleText h3{
    color: orange;
    font-size: 20px;
    font-weight: 700;
} 

.middleText div{
    width: 100%;
    height: 50px;
    background-color: aliceblue;
    opacity: 0;
}

.middleText ul li{
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin-left: 40px;
}

.bottomPic{
    width: 200px;
    height: 100%;
}

.bottomPic img{
    width: 100%;
    height: 100%;
    padding-left: 35px;
}

.footer {
    width: 100%;
    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: relative;
    bottom: 0;
    color: yellow;
  }