* {
    box-sizing: border-box;
}

@font-face {
    font-family: MyriadPro-Cond;
    src: url('fonts/MyriadPro-Cond.eot');
    src: url('fonts/MyriadPro-Cond.eot?') format('☺'),
        url('fonts/MyriadPro-Cond.woff') format('woff'),
        url('fonts/MyriadPro-Cond.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

a:link {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: black;
}

a:visited {
    text-decoration: none;
    color: white;
}

a:active,
a:hover {
    text-decoration: none;
    color: #37b7c1;
}


#ullink {
    text-decoration: underline;
}

/* Body */
body {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: MyriadPro-Cond, Arial Narrow, sans-serif;
    color: white;
    min-height: 99vh;
}

/* Home page */
.home {
    flex-shrink: 0;
    background-image: url('../fairmont.jpg');
    background-repeat: no-repeat;
    background-size: 920px;
    background-position: 104% 40%;
    width: 1200px;
    height: 600px;
    position: relative;
}

.home__text {
    position: relative;
    width: 300px;
    height: 600px;
    background: #000;
}

/* Bio page */
.biography {
    background-image: url('../stairs.jpg');
    background-position: 100%;
    background-size: 50%;
    background-repeat: no-repeat;
    width: 1200px;
    height: 600px;
    display: flex;
}

.biography__inner {
    position: absolute;
    width: 600px;
    height: 600px;
    background: #000;
}

.biography__inner__text {
    height: 390px;
    overflow-y: scroll;
    position: absolute;
    left: 90px;
    top: 120px;
    width: 420px;
    padding-right: 10px;
    text-align: justify;
}

/* Contact page */
.contact {
    width: 1200px;
    height: 600px;
    display: flex;
    flex-shrink: 0;
}

.contact__text {
    flex-basis: 300px;
    background: #000;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 44px;
}

.contact__text__img {
    margin-top: 20px;
}

.contact__text__centre {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.contact__img1,
.contact__img2 {
    flex-basis: 450px;
    background-size: cover;
    background-position: center;
}

.contact__img1 {
    background-image: url('../bathroom.jpg');
}

.contact__img2 {
    background-image: url('../spa_bathroom.jpg');
}