* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.alias {cursor: alias;}

body{
    margin: 0;
    background-color: rgb(112, 77, 0);
}

header {
    z-index: 1000;
    position: fixed;
    width: 100%;
    margin: 0;
    background-color: black;
}

.header-options {
    gap: 10px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 90%;
    font-size: 15pt;
    text-align: center;
}

.header-link {
    margin: 0;
    font-size: 12pt;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: all 1s ;
    padding-top: 10px;
    width: 100px;
    padding-bottom: 10px;
    border: 2px solid;
    border-color: #000000; /*52257c*/
    margin-top: 10px;
    margin-bottom: 10px;
}

.header-link:hover {
    font-size: 12pt;
    width: 100%;
    border-color: #52257c;
}

.banner-box{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0,.5);
}

.banner-image {
    margin: 0 auto;
    width: 100%;
    height:100vh;
    background-color: black;
    object-fit:cover;
}

.text-banner {
    color: white;
    position: absolute;
    justify-content: center;
    text-align: center;
    top: 40%;
    width: 100%;
}

.name-title {
    display: flex;
    gap: 7px;
    justify-content: center;
    transition: all 1s;
    font-size: 15pt;
}

.first-name {
    transition: all 1s;
    padding-right: 0px;
    position: absolute;
    z-index: 1;
}

.first-name:hover {
    padding-right: 250px;
    transform: translatex(-18px);
}

.last-name {
    transition: all 1s;
    color: rgba(0, 0, 0,0);
    z-index: 0;
}

.name-title .first-name:hover + .last-name {
    display: block;
    color: rgb(255, 94, 0);
    transform: translateX(50px);
    text-shadow: 10px 0px 10px black;
}