/* For Desktop/Laptop Screen (1920X1080) */
.image {
    max-width: 20%;
    height: auto;
    border-radius: 50%;
}

html, body {
    height: 100%;
    width:100%;
    font-family: Monospace;
    margin: 0;
    padding: 0;
}

.hero {
    background-size: cover;
    background-position: center;
    height: 100%;
    text-align: center;
    padding: 50px;
    background-color: #1E1E1E;
}

h1, h2, h3 {
    margin-bottom: 10px;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
}

#about {
    background-color: #f7f1e3;
    text-align: justify;
}

#contact {
    background-color: #e0ffe0;
}

footer {
    text-align: center;
    padding: 10px;
    color: black;
}

footer .social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    color: black;
}

footer .social-icons li {
    margin: 0 10px;
}

.fab {
    font-family: FontAwesome;
    color: black;
}

.fab:hover {
    color: #ADD8E6;
}

.hire{
    position: fixed;
right:0;
   -webkit-box-shadow: 0px 0px 28px 0px rgba(46, 210, 255, 1);
    -moz-box-shadow: 0px 0px 28px 0px rgba(46, 210, 255, 1);
    box-shadow: 0px 0px 28px 0px rgba(46, 210, 255, 1);
}

.hire a{
    float: right;
    transition: font-weight 0.3s, font-size 0.3s;
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 10%;
}

.navbar {
    position: fixed;
    -webkit-box-shadow: 0px 0px 28px 0px rgba(46, 210, 255, 1);
    -moz-box-shadow: 0px 0px 28px 0px rgba(46, 210, 255, 1);
    box-shadow: 0px 0px 28px 0px rgba(46, 210, 255, 1);
}

.navbar a {
    transition: font-weight 0.3s, font-size 0.3s;
    float: left;
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 10%;
}

/* Hover and Active States */
.hire a:hover, .navbar a:hover {
    color: black;
    background-color: #ADD8E6;
    font-weight: bolder;
    font-size: 1.2em;
}

.hire a.active, .navbar a.active {
    color: black;
    background-color: #ADD8E6;
    font-weight: bolder;
    font-size: 1.2em;
overflow-x:hidden;
}

/* Responsive styles for screens smaller than 600px */
@media (max-width: 600px) {
    .hire a, .navbar a {
        padding: 7px 7px;
    }
}
