#homepage {
    min-height: 60rem;
    height: 95vh;
    width: inherit;
    overflow: hidden;
    background-image: radial-gradient(farthest-corner, #15b6d9 0%, #13a0bf 100%);
    background-position: center top;
    background-attachment: scroll;
    background-size: cover;
    position: relative;
    margin: 0;
    padding-top: 4rem;
}


@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    @media (max-device-height: 650px) {
        #homepage {        
            height: 170vh;
        }
    }

    @media (min-device-height: 651px) and (max-device-height: 725px) {
        #homepage {        
            height: 160vh;
        }
    }

    @media (min-device-height: 726px) and (max-device-height: 800px) {
        #homepage {        
            height: 150vh;
        }
    }

    @media (min-device-height: 801px) and (max-device-height: 875px) {
        #homepage {        
            height: 140vh;
        }
    }

    @media (min-device-height: 876px) {
        #homepage {        
            height: 130vh;
        }
    }
}

.intro {
    width: 100%;
    display: flex;
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    .intro {
        width: 100%;
        display: block;
        justify-content: left;    
    } 
}

.homepage-left {
    width: 55%;
    display: flex;
    justify-content: left;    
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    .homepage-left {
        width: 100%;
    }
}

.logo {
    height: 7rem;
    margin: .75rem 1rem;
    width: auto;
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    .logo {
        display: none;
    }
}

.profile {
    width: 100%;
    margin: 0 .5rem;
}

.name {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    line-height: 3rem;
}

.info {
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 2rem;
}

.homepage-right {
    width: 45%;
    display: grid;
    padding: .75rem 1rem;
    justify-items: right;

}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    .homepage-right { 
        width: 100%; 
        padding: .75rem 0;
        justify-items: center;
    }
}

iframe:focus {
    outline: none;
  }
  
iframe[seamless] {
    display: block;
}

.video {
    width: 630px;
    height: 426px; 

    color: #FFF;
    background: #000;
    background-clip: padding-box; /* !important */
    border: solid 2px transparent; /* !important */
    border-image: linear-gradient(to bottom right, white 0%, #0c6b80 100%);
    border-image-slice: 1;
}

@media (max-device-width: 1600px) {
	.video {
        width: 420px;
        height: 260px;
	}
}


@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    .video { 
        width: 315px;
        height: 213px;
    }
}

.video_info {
    color: #FFF;
    font-size: 1rem;
    font-weight: 300;
    padding-top: .5rem;
}

.skills {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    .skills {  
        display: block;
    }
}

.skills-list {
    width: 33%;
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    .skills-list {  
        width: 100%;
    }
}

.category {
    text-align: center;
	color: white;
    font-size: 2rem;
    font-weight: 300;
    line-height: 3rem;
	padding-bottom: 0.25rem;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    .category {
        font-size: 1.75rem;
        font-weight: 300;
        line-height: 2.5rem;
        padding-bottom: 0.25rem;
        margin-top: 1.75rem;
        margin-bottom: 0;
    }
}

.subcategory {
    text-align: center;
	color: white;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5rem;
    padding-bottom: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

@media only screen and (max-device-width: 900px) and (orientation: portrait) {
    .subcategory {
        text-align: center;
        color: white;
        font-size: 1.5rem;
        font-weight: 300;
        line-height: 1.75rem;
        padding-bottom: 1rem;
    }
}

