@font-face {
	font-family: TrueLies;
	src: url(res/TrueLies.ttf);
}

html, body {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    position: relative;
	margin: 0px;
	font-family: monospace;
}

#bgvid {
    position: fixed;
    width:100%;
    height:100vh;
    overflow: hidden;
    z-index: -1;
}

#bgvid > video {
    object-fit: cover;
    width:100%;
    height:100%;
    z-index: -1;
}

.wrap-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.prof-card {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    color: #ddd;

    min-width: 500px;
    width: 50%;
    max-width: 1000px;

    overflow: hidden;
    border-top-style: solid;
    border-bottom-style: solid;
    border-width: 1px;
    border-color: #ddd;
    border-radius: 10px;

    opacity: 0.7;

    background-image:
		linear-gradient(145deg, #111f 0%, #111f 25%, #fff 50%, #0004 75%, #0004 100%);
    background-position: 100% 100%;
    background-size: 400% 400%;
	background-repeat: no-repeat;
    
    transition: 0.7s 0.3s;
    
    padding-bottom: 2em;
}

.prof-card:hover {
    border-radius: 0px;
    opacity: 1; 
    background-position: 0% 0%;
    border-width: 10px;

	transition: 0.7s;
}

.prof-card > .card-area {
	padding: 1em;
}

.prof-card > .card-button {

	display: flex;
	flex-direction: row;
	justify-content: center;

	padding: 5px;
	text-decoration: none;
    color: rgba(255, 255, 255, 0.6);


    
    background-image:
        linear-gradient(90deg, rgba(100,100,100,0.5) 45%, rgba(255,255,255,0) 55%);
    background-position: 100% 100%;
    background-size: 400% 400%;
	background-repeat: no-repeat;

	transition: 0.7s;

}


.prof-card > .card-button:hover {
    color: #fff;
    background-position: 0% 0%;
}

.card-button > .text {
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
	font-size: 30px;

}

.card-button > .icon {
	width: 40px;
	height: 40px;
	padding-left: 10px;
    padding-right: 10px;
    overflow: none;
    
    opacity: 0.6;

	transition: 0.7s;
}
.card-button:hover > .icon {
    opacity: 1;
}

h1 {
	text-align: center;
	font-family: TrueLies;
    padding-left: 1em;
	padding-right: 1em;
	font-size: 50px;
}

p {

    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    font-size: 16px;
    text-align: center;
}

.logo-area {
    opacity: 0.7;
}