/* This was edited by Seiya Abe at 2019/01/01. */
@charset "UTF-8";

.prof {
    display: block;
}
.prof h1 {
    padding-left: 20px;
    margin: 0;
    color: #000
}
section {
    position: relative;
    margin-top: 100px;
    margin-bottom: 100px;
    height: 600px;
    display: flex;
}
section h2{
    margin: 10px;
    color: #fff;    
}
section p {
    color: #fff;
    font-size: 14px;
}

section .screen {
    position: relative;
    flex-grow: 1;
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

section .screen:nth-child(1) {
    background: #fff;
}
section .screen:nth-child(2) {
    background: #fff;
}
section .screen:nth-child(3) {
    background: #fff;
}
section .screen .card {
    max-width: 300px;
    text-align: center;
    transition: 0.5s;
}
section .screen .card .imgBx {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
section .screen .card .imgBx img {
    max-width: 100%;
}
section .screen .card a {
    padding: 10px 20px;
    border-radius: 20px;
    background: #262626;
    color: #fff;
    text-decoration: none;
}

section .screen .card a:hover {
    opacity: 0.5;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 20px; 
    background: #696969;
    transition: 1s;
    opacity: 0;
    visibility: hidden;
}
section .screen .card a:hover ~ .content, .content:hover {
    opacity: 1;
    visibility: visible;
}
section .screen:nth-child(2) .content {
    background: #696969;
}
section .screen:nth-child(3) .content {
    background: #696969;
}