* {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
    min-height: 100vh;
    min-width: 100%;
    overflow-x: hidden;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/*
COMMON ELEMENTS
*/
.text {
    letter-spacing: 2px;
    color: #FAFAFA;
    padding: 15px 0 15px 0;
    font-family: Comfortaa, cursive;
    text-shadow: 0 0 15px rgba(0, 0, 0, .5);
    transition: all .3s ease-in-out;
    animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -o-animation: fadein 2s;
}

@font-face {
    font-family: Comfortaa;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../res/font/Comfortaa-VariableFont_wght.ttf);
}

@-webkit-keyframes fadein {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

@-moz-keyframes fadein {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

@-o-keyframes fadein {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

@keyframes fadein {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

/*
HEADER
*/
#header {
    height: 15vh;
    width: 100%;
    background-color: #9B0000;
}

#title {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 0px;
    font-size: 30px;
}

/*
LEFT
*/
#left {
    position: relative;
    float: left;
    clear: left;
    height: 85vh;
    width: 50%;
    background-color: #212121;
}

#contact {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

#emblem {
    height: 200px;
    border-radius: 15px;
    pointer-events: none;
    animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -o-animation: fadein 2s;
}

#name {
    font-size: 20px;
    padding: 0 0 30px 0;
}

#phone {
    padding: 30px 0 15px 0;
}

#email {
    user-select: text;
}

#car {
    padding: 15px 0 0 0;
}

/*
RIGHT
*/
#right {
    position: relative;
    float: right;
    clear: right;
    height: 85vh;
    width: 50%;
    background-color: #757575 !important;
    background: url(../res/img/vehicle-exterior.jpg) no-repeat center center;
    background-size: contain;
    animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -o-animation: fadein 2s;
}
