body {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(black, rgb(22, 22, 22));
    margin: 0px 100px;
    align-items: center;
    justify-content: center;
}

.container-fluid {
    margin: 0;
    padding: 0;
}

.col-lg-6 {
    padding: 0;
    margin: 0;
}

h3 {
    font-family: 'Roboto';
    font-style: italic;
    color: #950101;
}
/********************* NAVBAR *******************/

.navbar {
    background-color: rgba(0, 0, 0, 0) !important;
}

.collapse {
    align-items: center;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    gap:100px;
    align-self: center;
}

.nav-link {
    color: white;
    font-family: "Roboto";
    font-weight: 300;
}

.nav-link:hover {
    color: #FF0000;
    font-family: "Roboto";
    font-weight: 300;
}

.navbar-toggler {
    margin-left: 20px;
}

@media (max-width:1000px) {
    .navbar-nav {
        display: flex;
        gap:30px;
        align-self: center;
    }

    .nav-link {
        color: white;
        font-family: "Roboto";
        font-weight: 300;
        margin-left: 20px;
    }
    
    .nav-link:hover {
        color: #FF0000;
    }
}

/********************* HERO **********************/

#hero {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100vh;
    background-color: #00000000;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-img {
    background-image: url('/assets/hero.jpeg');
    background-size: cover; 
    background-position: top; 
    height: 250px; 
    width: 250px; 
    border-radius: 50%; 
}

.hero-p {
    margin: 5px 0px 0px 0px;
    font-family: 'Roboto';
    color: gray;
}

.hero-h1 {
    font-family: 'Roboto';
    color: white;
}

.hero-h1 {
    font-family: 'Roboto';
    color: white;

}.hero-h2 {
    font-family: 'Roboto';
    color: #950101;
}

/***************************** ABOUT ME *****************************/

#about {
    display: flex;
    flex: 1;
    background-color: #00000000;
    min-height: 70vh;
    justify-content: center;
}

.text {
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.about-p {
    font-family: 'Roboto';
    color: white;
}

.row {
    width: 100%;
}


.about-img1 {
    width: 250px;
    position: absolute;
    margin-right: 200px;
}

.about-img2 {
    width: 250px;
    position: absolute;
    margin-top: 30px;
    margin-left: 200px;
}

.about-img3 {
    margin-top: 200px;
    position: absolute;
    width: 250px;
}

/************************** SKILLS ***********************/

#skills {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}


.skills-container {
    background-color: rgb(236, 236, 236);
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.skills-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease;
}

.skills-icon:hover {
    transform: translate(0px, -20px) rotate(360deg) scale(1.4);
}

.portfolio-btn {
    display: flex;
    flex-direction: row;
    border: none;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background-color: rgba(0, 0, 0, 0);
}

.portfolio-a {
    text-decoration: none;
}

.Portfolio-btn h4 {
    color: #000000;
    font-family: 'Roboto';
}

.Portfolio-btn img {
    width: 30px;
}


/*************************** CONTACT ***************************/

#contact {
    min-height: 100vh;
    background-color: #00000000;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
}

form {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(0, 0, 0); 
    transition: transform 0.3s ease; 
}



.form {
    background-color: rgba(236, 236, 236, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
}


.form-name {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

input {
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    height: 50px;
    width: 100%;
    text-decoration: none;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white;
    margin-bottom: 20px;
    padding: 10px;
    transition: all 1s ease;
}

input:focus {
    transform: scale(1.03);
    border-bottom: none;
}




textarea {
    color: white;
    font-family: "Roboto";
    font-weight: 300;
    height: 100px;
    width: 100%;
    margin-bottom: 20px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
    border: white solid 2px;
    border-radius: 10px;
    padding: 10px;
    transition: all 1s ease;
}

textarea:focus {
    transform: scale(1.03);
    border: none;
}

.custom-btn {
    background-color: #00000000;
    border: 1px solid #950101;
    background-color: #950101;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    font-family: 'Roboto';
    padding: 10px;
    transition: all 0.5s ease;
    width: 100%;
}

.custom-btn:hover {
    background-color: #FF0000;
    color: rgb(255, 255, 255);
}


.hr {
    display: flex;
    flex-direction: row;
    width: 80%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}


.hr hr {
    background-color: white;
    width: 100%;
    margin: 0;
    height: 2px;
    margin-bottom: 10px;
}

.footer-icons {
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.Ficon {
    color: #950101;
    font-size: 30px;
    transition: all 0.5s ease;
}

.Ficon:hover {
    color: #FF0000;
    transform: scale(1.5);
}