@font-face {
    font-family: 'whitneybold';
    src: url('whitney_bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/*************** MAIN ELEMENTS ***************/

body {
    margin:0;
    padding:0;	
}

div {
    position:absolute;
}

#wrapper {
    display:block;
    top: 0;
    left: 0;
    width: 970px;
    height: 250px;
	overflow: hidden;
    background-color: #ff9800;
}

#wrect {
    width: inherit;
    height: inherit;
    background: #ff9800;
    pointer-events: none;
}

#border {
    border: 1px solid #5a5a5a; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    width: inherit;
    height: inherit;
    pointer-events: none;
    top:0;
}

#bgexit {
    width: inherit;
    height: inherit;
    cursor: pointer;
}

canvas {
    position: absolute;
    display: block;
    top:0;
    left:0;
}

/******************** LOGO ********************/

#logo {
    cursor: pointer;
    width: 230px;
    height: 190px;
    top: 30px;
    left: 0;
    background-color: #fff;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

#logoInner {
    width: 175px;
    height: 55px;
    left: 27px;
    top: 50%;
    transform: translateY(-50%);
    background: url("logo.svg") no-repeat;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
/******************** BUTTON ********************/

#cta {
    width: 255px;
    height: 60px;
    line-height: 170%;
    letter-spacing: 0.4pt;
    right: 64px;
    bottom: 30px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    background-color: #282828;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ctaInner {
    font-family: 'whitneybold', sans-serif;
    font-size: 32px;
}

#cta:hover {
    background: #fff;
    color: #ff9800;
}

/********************** TEXT **********************/

.textWrap {
    width: 335px;
    height: 120px;
    right: 26px;
    top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#text1 {
    font-family: 'whitneybold', sans-serif;
    font-size: 38px;
    color: #fff;
    line-height: 110%;
    text-align: center;
}

#text2 {
    font-family: 'whitneybold', sans-serif;
    font-size: 38px;
    color: #fff;
    line-height: 110%;
    text-align: center;
    width: 295px;
}

#highlight {
    text-decoration: underline;
}