/* Google font import */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* General styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #777;
    background-color: #333333;
    background-image: url(../img/back_ground.png);
    background-repeat: repeat;
}

h1, h2, h3, h4, h5, h6 {
    color: #999999;
}

.img-shadow {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border-radius: 5px;
}

/* navbar styles */
.contact-nav {
    padding-top: 30px;
}

.contact-icon {
    width: 25px;
    height: 25px;
    background-color: #545454;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
}

.contact-icon:hover {
    background-color: #bbb;
    color: #FFFFFF;
}

.social-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

a{
    text-decoration: none;
    color: #999999;
}

a:hover {
    text-decoration: none;
    color: #FFFFFF;
}

a:visited {
    text-decoration: none;
    color: #FFFFFF;
}

a:active {
    text-decoration: none;
    color: #FFFFFF;
}
