* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
html, body {
    height: 100%;
}
body {
    font-size: 1rem;
    line-height: 1.65;
    font-family: 'Poppins', sans-serif;
    color:#DEB887;  
}
.uc__wrapper {
    background-image:url("assets/bg.png") ;
    display: flex;
    width: 100%;
    height: 100%;
 
}
.uc__details {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 4rem;
    align-items: flex-start;
    justify-content: center;
    min-width: 65%;
    float:left;
    object-fit:cover;
}
.logo{
    position:absolute;
    top: 25px;
    left: 25px;
    z-index: 2;    
}
.image{ 
    width: auto;
    height: 100%;   
}
.title {
    display: inline-block;
    font-size: 40px;
    position: relative;
    margin-bottom: 1rem;
}
.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color:#DEB887;
    width: 140px;
}
.intro {
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
