@font-face {
    font-family: 'Ubuntu', sans-serif;
}

html, body{
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

body{
    background: url("../img/london.jpeg") center no-repeat fixed;
    background-size: cover;
}

#kyle-macy-left-window{
    position: fixed;
    width: 50%;
    height: 100%;
    left: 0;
    z-index: 1;
    background:  #ecf0f1;
    animation: window-opening 2s forwards;
}

#kyle-macy-right-window{
    position: fixed;
    width: 50%;
    height: 100%;
    right: 0;
    background:  #ecf0f1;
    z-index: 1;
    animation: window-opening 2s forwards;
}

.kyle-macy-logo-container{
    position: fixed;
    top: 10%;
    right: 5%;
    cursor: pointer;
    transition: 0.25s ease-in-out;
}

.kyle-macy-investor{
    position: fixed;
    bottom: 10%;
    right: 5%;
    cursor:  pointer;
    transition: 0.25s ease-in-out;
    background: none;
    padding: 15px;
}

.kyle-macy-investor:hover{
    transform:  scale(1.25);
}

.kyle-macy-logo-container:hover{
    transform: scale(1.25);
}

.kyle-macy-index-container{
    width: 100%;
    height: 100%;
}

.investment-url{
    text-decoration: underline;
    color:  #ecf0f1;
    font-size: 18px
}

.investment-url:active{
    text-decoration: none;
}

.kyle-macy-content-container{
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.kyle-macy-title-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.kyle-macy-title-text{
    display: flex;
    color: #ecf0f1;
    font-size: 24px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    animation: fade-in 2s forwards;
    animation-delay: 1s;
    opacity: 0;
    text-align: center;
}

.kyle-macy-sub-title-text{
    display: flex;
    color: #ecf0f1;
    font-size: 16px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    animation: fade-in 2s forwards;
    animation-delay: 1.2s;
    text-align: center;
}



.kyle-macy-logo{
    width: 128px;
    height: 128px;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


@keyframes window-opening {

    100% { width: 0;}
}

@keyframes fade-in {
    100%{opacity: 1}
}

@keyframes shutter-opening {
    from {
        -webkit-transform: perspective(300) rotateY(0deg);
        -webkit-transform-origin: 0% 0%;
    }
    to {
        -webkit-transform: perspective(300) rotateY(-90deg);
        -webkit-transform-origin: 0% 0%;
    }
}
