html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "SF Pro Display Semibold";
    src: url(../fonts/SF-Pro-Display-Semibold.otf);
}

@font-face {
    font-family: "SF Pro Display Regular";
    src: url(../fonts/SF-Pro-Display-Regular.otf);
}

@font-face {
    font-family: "SF Pro Display Medium";
    src: url(../fonts/SF-Pro-Display-Medium.otf);
}

#home {
    padding: 0;
}

.btn {
    z-index: 0;
}

#my-nav {
    position: sticky;
    top: 0;
    z-index: 1;
}

.tabs .indicator {
    background-color: #007aff;
}

.tabs .tab a:focus,
.tabs .tab a:focus.active {
    background-color: transparent;
}

#menu {
    display: flex;
    justify-content: center;
}

#nav-item-text {
    color: #007aff;
}

.card-image img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card {
    position: relative;
    height: 45vh;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
    opacity: 1;
    margin-bottom: 40px;
}

.btn {
    border-radius: 30px;
    font-family: "SF Pro Display Semibold";
}

.action-button {
    border-radius: 50px;
}

p {
    font-family: "SF Pro Display Regular";
}

.card-title {
    font-family: "SF Pro Display Medium";
}

.main-title {
    font-family: "SF Pro Display Semibold";
    font-weight: 500;
    margin-top: -3em;
    opacity: 0;
    animation: fade-in 3s ease 1s forwards;
}

#experience_title {
    font-family: "SF Pro Display Semibold";
}

#projects_title {
    font-family: "SF Pro Display Semibold";
}

#certification_title {
    font-family: "SF Pro Display Semibold";
}

#contact_title {
    font-family: "SF Pro Display Semibold";
}

#mobile_app_code_btn {
    margin-left: 1em;
}

#code_btn {
    margin-left: 1em;
}


@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}