

:root{
    --OMO-Blue: #33CCFF}


* {
    color: var(--OMO-Blue);
    margin: 0;
    padding: 0;}

body{
    width: 60%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}


/* header */
header {
    position: relative;
    width:  20%;
    height: 90%;
    min-width: 250px;
    min-height: 600px;
    margin: 2em auto;
    background-color: #666666;
}


/* Company Name */

    #name { 
        position: relative;
        font-size: 50px;
        margin: 1.5em auto;
        line-height: 1.5em;
        font-family: 'Bebas Neue', cursive;
        font-weight: 700;
        z-index: 2;
    }

    #name h1 {
        color: #999999;
        text-align: center;
        padding-bottom: .5em;
    }

    #name h1::first-line{
        font-size: 1.1em;
    }

    #name h1::first-letter{
        font-size: 1.1em;
    }

    #name h1 .name-sub-title{
        color: var(--OMO-Blue);
        padding: 0px .5em 0 .5em;
        background:  #333333;
        font-size: .5em;
        clip-path: polygon(0% 2%, 98% 2%, 94% 100%, 4% 86%);
    }

/*Top left box */

header::before{
    width: 20%;
    height: 20%;
    min-width: 5em;
    min-height: 5em;
    clip-path: polygon(0 0, 95% 0%, 70% 70%, 0 64%);
    background:  #333333;
    content: "";
    position: absolute;
    left: -1.25em;
    top: -1.25em;

}


.logo {
    background:  #333333;
    width: 80%;
    height: 35%;
    min-width: 10em;
    min-height: 10em;
    clip-path: polygon(0% 8%, 100% 2%, 100% 100%, 15% 100%);
    top: 67%;
    position: absolute;
    -ms-transform: translateY(-67%);
    transform: translateY(-67%);
    right: -7%;
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}


.logo img{
    display: block;
    position: absolute;
    top: 25%;
    -ms-transform: translateY(25%);
    transform: translateY(25%);
    right: 7%;
    -ms-transform: translateX(7%);
    transform: translateX(7%);
    margin-top: 10%;
    height: 65%;
    
}


/* Main Content */

li{
    background: var(--OMO-Blue);
    color: white;
}

li a{
    color: white;
}

hr{
    width: 60%;
    color: #999999;
    margin: 2.5em auto ;
}


main {

    width: 65%;
    margin: 2em auto 0 0;
    font-family: 'Louis George Café Light', sans-serif;
    min-width: 700px;

}

main h2{
    margin: 0;
    padding: 0;
    font-size: 2em;
    text-transform: uppercase;
}

main .tagline{
    width: fit-content;
    margin: 0;
    padding: 20px 40px 30px 20px;
    font-size: 1.25em;
    font-family: 'Louis George Café', sans-serif;
    position: relative;
}

.tagline{
    display: flex;
    font-weight: 800;
    align-items: center;
    background:#333333;
    width: fit-content;
    clip-path: polygon(0% 2%, 98% 0%, 96% 100%, 0% 80%);
}

.bio{ 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}


.bio_info {
    margin: 10px;
    width: auto;
    height: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.bio_info:nth-of-type(1) img{
    display: block;
    margin-top: -15px;
    height: 100%;    
}

.bio_info:nth-of-type(2) img{
    display: block;
    margin-top: 15px;
    height: 80%;    
}




.bio_info.bio_info:nth-of-type(1) div::before{
    content: "";
    display: block;
    margin: 0;
    padding: 0;
    margin-left: -30px;
    margin-top: 5px;
    z-index: -2;
    line-height: 0;
    min-width: 4em;
    min-height: 8em;
    clip-path: polygon(0 0, 95% 0%, 70% 70%, 0 64%);
    background:  #999999;
    position: absolute;

}

.bio_info:nth-of-type(2) div::before{
    content: "";
    display: block;
    margin: 0;
    padding: 0;
    margin-left: -30px;
    z-index: -2;
    line-height: 0;
    min-width: 4em;
    min-height: 8em;
    clip-path: polygon(30% 0%, 100% 5%, 100% 60%, 30% 64%);
    background:  #999999;
    position: absolute;
}

.bio_info p{
    font-size: 20px;
    font-weight: 500;
    margin-left: 40px;
    line-height: 1.5em;
}
.bio_info a{
    font-size: 16px;
}

.bio-tagline{ 
    font-size: 16px;
    margin-left: -30px;
}


.link-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 25px;
    
}

.link-item {
    float: left;
    margin: 10px;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    clip-path: polygon(0% 2%, 98% 0%, 96% 100%, 0% 80%);
  }

.link-item:hover {
    background-color: #333333;;
}

    