:root{
    --color-gray: #1d1d1d;
    --color-orange:#fc5935;
    --color-white: #fff;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}
body{
    background-color: var(--color-white);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
}
img{
    pointer-events: none;
    -webkit-user-drag: none;
}
a{
    text-decoration: none;
    -webkit-user-drag: none;
    color: var(--ccolor-black)
}
ul{
    list-style: none;
}
div{
    margin: 0;
    padding: 0;
    overflow: hidden;
}







div {
    width: 800px;
    height: 450px;
    display: inline-block;
    position: relative;
}
img{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 450px;
}
h1{
    position: relative;
    left: 140px;
    color: var(--color-orange);
    display: inline-block;
    margin: 0 50px;
    vertical-align: top;
    line-height: 160px;
    font-size: 60px;
    font-weight: 100;
}
p{
    position: relative;
    left: 140px;
    color: var(--color-gray);
    display: inline-block;
    margin: 0 50px;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
}
a{
    display: block;
    position: absolute;
    right: 20px;
    bottom: 20px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--color-white);
    width: 100px;
    background-color: var(--color-orange);
    border-radius: 20px;
    transition:0.2s;
}
a:hover{
    color: var(--color-orange);
    background-color: var(--color-white);
}
h2{
    position: absolute;
    left: 140px;
    bottom: 20px;
    margin: 0 50px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 100;
}