
body{
    background-color: #a9a9a9;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* make logo size mobile friendly */
#logo {
    height: 300px;
    width: 210px;
}

/* Dropdown button */
.dropbtn {
    background-color: #ff8c00;
    color: black;
    padding: 16px;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

/* Position container Div */
.dropdown {
    position: relative;
    display: inline-block;
    background-color: #ff8c00;
}

/* Drop dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px  rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* dropdown link hover color */
.dropdown-content a:hover{
    background-color: #ddd;

}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content{
    display: block;

}

/*  Change background color of dropdown when show */
.dropdown:hover .dropbtn {
    background-color: #ff8c00;
} 

/* Top left logo */
.logo--container {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 9px;
}

/* Regular button */
.button {
    background-color: #ff8c00;
    color: black;
    padding: 16px;
    font-size: 20px;
    border: none;
}

/* Header Color Rectangle*/
#rectangle {
    width: 100%;
    height: 60px;
    background: #ff8c00;
}

/* Circle Navigation */
.shape {
    width: 300px;
    height: 300px;
    background: #ff8c00;
    margin: 0 auto;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all 2s ease-out;
}
.shape.circle{
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

.shape.circle.to-zoom {
    -webkit-clip-path: circle(40.0% at 50% 50%);
    clip-path: circle(40.0% at 50% 50%);
}

.shape.circle.to-zoom:hover {
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%)
}

#circle_one {
    position: absolute;
    top: 50px;
    left: 50px;
}

#circle_two {
    position: absolute;
    bottom: 50px;
    right: 50px;
}

#portfolio_button {
    position: absolute;
    top: 175px;
    left: 150px;
}

#contact_button {
    position: absolute;
    bottom: 175px;
    right: 150px;
}
