* {
    margin: 0;
    padding: 0;
    font-family: monospace, 'IBM Plex Mono', sans-serif;
}

.hero {
    height: 100vh;
    width: 100%;
    background: #edf2fc;
    font-family: sans-serif;
    position: relative;
}

nav {
    width: 84%;
    margin: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 70px;
    cursor: pointer;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.4);
    border-radius: 6px;
    padding: 6px;
}

nav ul li a {
    text-decoration: none;
    color: #ff4321;
}

/*nav ul li: hover {
    box-shadow: none;
    border-radius: 0;
}
*/

nav ul li a:hover {
    color: #606163; 
}

.info {
    margin-left: 8%;
    margin-top: 8%; 
}

.info h1 {
    font-size: 70px;
    color: #212121;
    margin-bottom: 10px;
    letter-spacing: -5px;
}
.info h3 {
    margin-bottom: 25px;
    color: #615f59;
}

span {
    color: #ff4321;
}

.info p {
    color: #606163;
    line-height: 25px;
    letter-spacing: -0.5px;
}

.info a {
    background: #212121;
    padding: 10px 18px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.4);
}
.info a:hover {
    background: #ff4321;
    color: #fff;
}

.img-box {
    width: 45%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 100px;
}

.img-box img {
    height: 100%;
    position: absolute;
    left: 55%;
    bottom: 0;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s;
}

.img-box:hover .back-img {
    bottom: 60px;
}

.img-box:hover .main-img {
    left: 60%;
}

.social-links {
    margin-left: 8%;
    margin-top: 80px;
}

.social-links a {
    font-size: 30px;
    color: #ff4321;
    margin-right: 30px;
}

.social-links a:hover {
    color: #606163;
}

@media screen and (max-width: 1050px) {
    .img-box {
        display: none;
    }
}

/* Version2 added */
.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 8%;
}
.dropdown-content {
    display: none;
    position: absolute;
    font-family: 'M PLUS 1 Code', monospace;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 2px 6px;
    z-index: 1;
}
.dropdown:hover .dropdown-content {
    display: block;
}
#arrowDown {
    font-size: 20px !important;
}
#arrowNorthEast {
    font-size: 15px !important;
    color: black;
}
a.linking {
    text-decoration: none;
    color: red;
}


