* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: darkcyan !important;
}

.logo {
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    background-color: #666666;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-shadow: rgba(255, 255, 255, 0.5) 0px 3px 3px;
}

.nav-link {
    color: darkcyan !important;
    font-weight: 600;
}

.nav-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.bg-image {
    height: 100vh;
    background-image: url("/img/background-image.jpg");
    background-size: cover;
    position: relative;
    opacity: 0.8;
}

.text {
    font-family: "Poppins", sans-serif;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
}

.title {
    font-size: 3.5rem;
    opacity: 0.65;
}

.description {
    font-size: 2rem;
    opacity: 0.55;
}

.dev {
    font-family: 'Pacifico', cursive;
    text-decoration: underline;
}

.aboutme {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    text-align: center;
    text-align-last: center;
    line-height: 2.2;
}

.btn {
    background-color: darkcyan !important;
    color: white !important;
}

.btn:hover {
    background-color: cyan !important;
    color: darkcyan !important;
}

#about,
#services,
#portfolio {
    margin-top: 4rem;
    padding-top: 4rem;
}

.card {
    border: none !important;
}

.card:hover {
    cursor: pointer;
    transform: scale(1.1);
    overflow: hidden;
    border-radius: 10px;
}

#contact {
    text-align: center;
    margin-top: 4rem;
    margin-right: 1.25rem;
    padding-top: 4rem;
}

.social-icons {
    font-size: 2.25rem;
    cursor: pointer;
}

a.social {
    text-decoration: none;
    color: darkcyan;
    padding: 10px;
}

a.social:hover {
    opacity: 0.6;
}

.fa-darkcyan {
    color: darkcyan !important;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}