/* Global CSS*/
body
{
    background-color: #f5f5f5;
    color: #333;
    font-family: 'Poppins', 'Segoe UI';
    animation: fadeIn 1.5s ease;
}

h1,h2,li
{
    color: #1e90ff;
    font-family:'Poppins', 'Segoe UI';
    font-weight: 600;
}

p
{
    line-height: 1.6;
    font-family: 'Poppins', 'Segoe UI';
}

/* IDs */

#infobar
{
    margin:auto;
    width:100%;
    /*border: 1px solid black;
    border-radius: 5px*/
}

#contactTable
{
    margin: 0 auto;
    width: 10%;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0,0,0, 0.1);
    border-radius: 10px;
}

#aboutMeContainer p
{
    font-size: xx-large;
    margin-left: 10px;
}

#contactTable td 
{
    padding: 5px;
    transition: transform 0.3s ease, margin 0.3s ease;
}

#contactTable td:hover
{
    transform: scale(1.3);
    margin: 5px;
}

#skillTable
{
    margin: auto;
    width: 50%;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0,0,0, 0.1);
    border-radius: 10px;
}

#skillTable td
{
    padding: 10px;
    transition: transform 0.3s ease, margin 0.3s ease;
}

#skillTable td:hover
{
    transform: scale(1.4);
    margin: 5px;
}

#bg-img
{
    display:block;
    border-radius: 30px;
    width:50%;
    margin-top: 19px;
    margin-bottom:20px; 
    margin-left:auto;
    margin-right:auto;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.3);
}

#resumeLink
{
    font-size:large;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:black;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    margin-left: 3px;
}

#resumeLinkContainer
{
    padding: 20px, 40px;
    margin: auto;
    margin-bottom: 5px;
    width: 200px;
    border-radius: 20px;
    border: 3px solid black;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    animation: pulse 1.5s infinite;
}

#resumeLinkContainer:hover
{
    animation: none;
}

#skillContainer
{
    border-radius: 10px;
}

#skillText
{
    font-weight: bold;
}

#slidesContainer
{
    margin-bottom: 0px;
    border-radius: 10px;
    max-width:100%;
    position: relative;
    margin: auto;
}

/* Classes */

.mainTableHeading
{
    font-size:x-large;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.textHeader
{
    font-size:x-large;
    font-family:'segoe UI';
    margin:auto;
    text-align: center;
}

.Slides
{
display: none;
}

.captions
{
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}
.captions span
{
    background: rgb(0, 0, 0, 0.8);
    border-radius: 30px;
    padding: .5%;
}

.projectLink
{
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    filter: invert(1);
    top:0%;
    right:-49%;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.numberText
{
    color: #f2f2f2;
    font-size: 12px;
    margin-top: 3px;
    padding: 4px 12px;
    position: absolute;
    top: 0;
    font-weight: bold;
    border-radius: 30px;
    background: rgb(0, 0, 0, 0.9);
}

.dot
{
    cursor: pointer;    
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover
{
    background-color: #717171;
}

.fade
{
    animation: fade 1.5s linear;
}

@media (max-width: 768px)
{
    #contactTable {
        width: 80%;
    }
    #skillTable {
        width: 100%;
    }
}

/* animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes fade
{
    from {opacity: .4}
    to {opacity: 1}
}

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