body {
    display: flex;
    flex-direction: column;
    background-color: rgb(25, 25, 25);
    color:rgb(223, 217, 207);
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

main {
    max-width: 750px;
    margin: auto;
    margin-top: 100px;
    padding: 50px;
    animation: fadeInAnimation ease 4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

a {
    color:rgb(223, 217, 207);
}

footer {
    margin-top: auto;
    padding-left: 20px;
}

section {
    margin-bottom: 150px;
    padding-left: 1.5rem;
    border-width: 3px;
    border-style: solid;
    border-image: 
      linear-gradient(
        to bottom, 
        rgb(200, 75, 49), 
        rgba(0, 0, 0, 0)
      ) 1 100%;
    border-right: 0;
}

h2 {
    margin-bottom: 50px;
}

.navbar {
    margin-bottom: 100px;
    background: transparent;
}

.navbar-nav {
    margin-left: auto;
}

.nav-icon {
    width: 2rem;
    height: 2rem;
}

.carousel { 
    overflow: hidden; 
    padding-bottom: 6.5rem; 
}

.carousel-caption { 
    top: 100%; 
}

.carousel-inner { 
    overflow: visible; 
}

.carousel-control-next, .carousel-control-prev, .carousel-indicators { 
    bottom: 4em; 
}

.carousel-item { 
    height:350px;
}

.carousel-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

@media only screen and (max-width: 775px) {
    .projects {
      display: none;
    }
  }

.resume {
    text-decoration: none;
    color: rgb(223, 217, 207);
    font-size: 1.25rem;
    padding: 10px;
    background:
      linear-gradient(
        to right,
        rgb(200, 75, 49),
        rgb(200, 75, 49)
      ),
      linear-gradient(
        to right,
        rgba(255, 0, 0, 1),
        rgb(236, 219, 186),
        rgba(0, 100, 200, 1)
    );
    background-size: 100% 3px, 0 3px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
  }
  
.resume:hover {
    background-size: 0 3px, 100% 3px;
  }

.skills span {
    display: inline-block;
    margin-bottom: 5px;
    text-align: center;
    border: solid 1px var(--darkgray);
    padding: 4px 10px;
    border-radius: 25px;
    background-color: rgb(223, 217, 207);
    color: black;
}
