*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
}
body{
    font-size: 1rem;
    line-height: 1.65;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: linear-gradient(to right, hsl(264, 49%, 37%)  50%, hsl(264, 78%, 75%) 50%);
    color: #fff;
}
.uc__wrapper{
    height: 100vh;
    display: flex;
    justify-content: space-between;
}
.uc__details{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 4rem;
    align-items: flex-start;
    justify-content: center;
}
.uc__art{
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.uc__art img{
    width: 90%;
}
.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: #fff;
    width: 140px;
}
.intro{
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.uc__description{
    margin-bottom: 2rem;
    line-height: 1.77;
    color: #ccc;
}

