@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "sans-serif";
}


body {
    display: block;
    overflow-x: hidden;
    padding-top: 90px;
}

nav {
    background-color: rgb(84, 9, 69);
    color: #fff;
}

a.nav-link {
    color: #fff !important;
    font-weight: 700 !important;
}

a.nav-link.active {
    color: #fff;
}


.navbar-brand img {
    max-height: 50px;
}

.navbar-brand {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
    color: #683aa4;
}

.brandcolor {
    color: rgb(255, 179, 14);
}

section {
    background-color: #310134;
}

nav ul li a {
    font-size: 22px;
    margin: auto 10px;
}

a.nav-link:hover {
    color: rgb(253, 156, 0) !important;
    transform: translateY(10%) !important;
    transition: 0.1s ease-in-out;
}


section {
    padding-top: 50px;
    padding-bottom: 50px
}

section h1 {
    text-transform: uppercase;
    font-weight: 900;
    color: rgb(255, 179, 14);
    text-align: left;
    
}

section p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

.card-text {
    color: #333;
}

.programs {
    color: #fff;
}

.skills {
    margin-top: 20px;
    max-width: 50%;
}


button {
    max-width: 70%;
    border-radius: 50px !important;
}

button.btn {
    background-color: rgb(255, 179, 14);
    color: #333;
    line-height: 1;
}

#hero .col {
    justify-content: center;
    flex-direction: column;
    display: flex;
}

#hero .img-col {
    justify-content: flex-end;
    margin-top: 100px;
}

#hero img {
    max-width: 90% !important;
    width: 90%;
    
}

#hero .card {
    box-shadow: 11px 7px 16px rgba(255, 179, 14, 0.535);
    border: 0;
    text-align: center;
    background-color: rgb(255, 197, 71)
}

#hero .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;

}

#projects .projects {
    margin-bottom: 50px;

}

#contact {
    text-align: center;
    background-color: rgb(84, 9, 69);
    color: white;
}

#contact h1 {
    text-align: center;
}

.copyright {
    max-height: 90px;
    opacity: 50%;
}

.carousel-inner {
    box-shadow: 1px 50px 28px -6px rgba(24,4,31,0.75);

}

i.socials {
    font-size: 30px;
    margin: 10px;
  }

a:link {
    color: white;
    top: 0;
    transition: top ease 0.5s;
  }
  a:visited {
    color: white;
    text-decoration: none;
  }
  
  i.socials:hover{ 
    transform: translateY(-10px);
    transition: ease-in-out 0.3s;
  }



