@font-face {
    font-family: Courier;
    src: url(../fonts/COUR.TTF);
}

*
{
    margin: 0;
    padding: 0;
}

body
{
    background-color: #1E1E1E;
    position: parent;
    z-index: 1;
}

.home-decor-circle-1
{
    width: 100vw;
    height: 100vw;
    border-radius: 100%;
    background-color: rgba(43, 43, 43, .3);
    position: fixed;
    top: -50vw;
    left: -50vw;
    z-index: -2;
}

.home-decor-circle-2
{
    width: 100vw;
    height: 100vw;
    border-radius: 100%;
    background-color: rgba(12, 12, 12, .3);
    position: fixed;
    bottom: -50vw;
    right: -50vw;
    z-index: -2;
}

.home-logo
{
    width: 30vw;
    height: 30vw;
    position: fixed;
    bottom: 2vw;
    right: 2vw;
    z-index: -1;
    opacity: .05;
}

.top-container
{
    display: table;
    padding-left: 7vw;
}

.avatar-container
{
    background-color: #D9D9D9;
    width: 350px;
    height: 680px;
    background-image: url(../images/Me-1.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: bottom;
    border-radius: 0 0 50px 50px;
    display: table-cell;
}

.info-container
{
    padding: 0 5vw;
    font-family: 'Courier New', Courier, monospace;
    display: table-cell;
    vertical-align: bottom;
    width: calc(88vw - 350px);
    max-width: 1200px;
}

.info-container > .nickname
{
    color: #D9D9D9;
    font-weight: bold;
    font-size: 60px;
}

.info-container > .formalname
{
    color: #D9D9D9;
    font-size: 30px;
}

.info-container > .title
{
    color: #006EEF;
    font-weight: bold;
    font-size: 45px;
}

.info-container > .desc
{
    margin-top: 120px;
    color: #D9D9D9;
    font-size: 25px;
    text-align: justify;
}

.home-button
{
    border: 1px solid #D9D9D9;
    width: auto;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    font-family: 'Courier New', Courier, monospace;
    color: #D9D9D9;
    font-size: 25px;
    padding: 10px 50px;
    line-height: 50px;
    text-decoration: none;
    box-sizing: border-box;
    /* transition: .5s linear 1; */
}

.home-button:hover
{
    background-color: #D9D9D9;
    color: #1E1E1E;
}

.buttons-container
{
    text-align: center;
    margin-top: 150px;
    margin-bottom: 80px;
}

.buttons-container > .home-button
{
    margin: 20px;
}

.top-title
{
    width: 100%;
    background-color: #1e1e1ecc;
    position: fixed;
}

.top-title > div
{
    background-color: #D9D9D9;
    width: 350px;
    height: 130;
    border-radius: 0 0 50px 50px;
    line-height: 130px;
    margin-left: 7vw;
}

.top-title p
{
    color: #1E1E1E;
    font-family: 'Courier New', Courier, monospace;
    font-size: 45px;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

#port-content
{
    width: 100%;
    padding-top: 200px;
    text-align: center;
    max-width: 1800px;
    margin: auto;
}

#port-content > div
{
    display: inline-block;
    margin: 6px;
    padding: 10px 0 10px 10px;
    background-color: #0C0C0C;
    border-radius: 5px;
}

.port-vid-info
{
    border: 2px solid #D9D9D9;
    font-size: 25px;
    color: #D9D9D9;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    margin: 0 10px;
    vertical-align: top;
}

.port-vid-info:hover
{
    background-color: #D9D9D9;
    color: #1E1E1E;
}

#port-info-modal
{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.888);
    display: table;
    position: fixed;
    top: 0;
    left: 0;
    align-content: center;
    visibility: hidden;
}

#port-info-modal-content
{
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding: 20px;
    box-sizing: border-box;
    color: white;
}

#port-info-modal-content > p
{
    width: 800px;
    margin: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    border: 1px solid white;
    padding: 10px;
    border-radius: 5px;
}

.contact-methods
{
    margin-top: 10px;
}

.contact-methods a
{
    color: #D9D9D9;
    font-size: 45px;
    letter-spacing: 20px;
}

.contact-methods a:hover
{
    color: #4f90da;
}

.contact-methods .mail
{
    color: #D9D9D9;
    font-size: 20px;
    vertical-align: top;
    line-height: 45px;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-color: #d9d9d95e;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
}