/* General CSS */
body,
html {
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(181, 181, 181, 1) 100%) !important;
    margin: 0 auto;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    background: #fff;
    color: #000;
    /* hide overflow on the sides */
    overflow-x: hidden;
    font-family: 'Overlock', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    color: #fff !important;
}

a:hover {
    color: #bbb !important;
}

.contact-button {
    font-size: 20px;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    color: #000 !important;
}

.contact-button:hover {
    color: #00CED1 !important;
}

.button {
    border-radius: 25px;
    border: none;
    background: radial-gradient(circle, rgba(0, 128, 128, 1) 0%, rgba(0, 64, 64, 1) 100%);
    transition: 0.3s;
}

.button:hover {
    color: #fff !important;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

/* ------------------------------------- */
/* Navigation Menu */
.navbar-brand {
    font-family: 'Overlock', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 75px;
    font-weight: 700;
}

.first-letter {
    font-weight: 900;
    color: #00CED1;
}

/* style the navigation menu*/
.navbar ul li {
    margin-top: 2rem;
    margin-left: 2.5rem;
    margin-right: 0rem;
    margin-bottom: 2rem;
}

.navbar ul li a {
    font-size: 20px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 1.6px;
}

.is-active {
    border-bottom: 2px solid #00CED1;
}

/* centers the navigation menu when collapsed */
.navbar-collapse {
    text-align: center;
}

/* ------------------------------------- */
/* content */
.content {
    padding-bottom: 150px;
}

.content .content-title {
    margin: 0;
    padding-top: 10rem;
    padding-bottom: 2rem;
    font-family: 'Overlock', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
}

.content .content-text {
    font-size: 25px;
    color: #000;
}

.first-column {
    border-right: 2px solid #00CED1;
}

.programing {
    text-indent: 100px;
}

.experience-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-exp {
    width: 250px;
    height: 250px;
}

.contact-container {
    padding-left: 5rem;
    padding-right: 5rem;
    margin-top: 3rem;
    padding-bottom: 150px;
}

.sorry-container {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 3rem;
    padding-bottom: 150px;
}

.contact-container .contact {
    transition: 0.3s;
    border-radius: 1rem;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 1);
    background-color: rgba(104, 104, 104, 0.3);
}

.contact-container .contact:hover {
    transform: scale(1.05);
}

.contact-container .button {
    width: 100%;
    margin-top: 0.5rem;
}

.contact-container .row {
    margin-top: 0.5rem;
}

/* ------------------------------------- */
/* footer */
.footer {
    /* using fixed position to make the footer stay at the bottom */
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    bottom: 0;
    width: 100%;
    padding-top: 10px;
}

.footer-items {
    position: relative;
    margin: 0 0 20px 0;
    display: inline-block;
}

.footer-items li {
    float: left;
    margin-right: 10px;
}

.footer-items li a {
    position: relative;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.5rem;
    color: #ffffff !important;
}

.footer-items li a:hover {
    color: #00CED1 !important;
}
