.container {
    width: 100%;
    margin: 0 ! important;
}

.my-heith {
    height: 100vh;
}

.my-color {
    background-color: #e60073;
}

.my-text-pink {
    color:#e60073;
}

.my-text-white {
    color:white !important;
}

.mike {
    max-width: 200px;
    max-height: 200px;
}

#experience img {
    max-width: 288px;
    max-height: 360px;
}
/*
#profile {
    background-color: rgba(230, 0, 115, 1);
}


#profile {
    background-image: url("assets/matrix.gif");
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
}*/

#experience{
    background-image: url("assets/heroImg.jpg");
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
}

nav {
    background-color: rgba(230, 0, 115, 0.3);
}

#main {
    height: 100vh;
    background-image: url("assets/bkg\ resized.jpg");
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
}

@media only screen and (max-width: 576px) {
    #main {
      display: none;
    }
  }

 #profile {
    background-image: linear-gradient(to right, rgba(230, 0, 115, 0), rgba(230, 0, 115, 1));
}

#skills {
    background-color: white;
}

#skills button {
    width: 195px;
    height: 56px;
}

#skills a {
    color:#e60073;
}

.my-border-pink {
    border-color: #e60073;
}

.my-border-pink-thumb {
    border-color: #e60073;
    border-style: double;
}

.my-border-white {
    border-color: white;
}

#submit {
    background-color: white;
    border-radius: 5px;
}

.my-bgd {
    background-image: linear-gradient(to left, rgba(230, 0, 115, 0.2), rgba(230, 0, 115, 1)) !important;
}

.my-translate:hover {
    transform: scale(1.2, 1.2);
}
/* ANIMATION STYLES* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fade-in {
    animation: fade-in 10s;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/*++++++++++++++++++++++++++++++++*/


/* INTRO STYLES*/
.intro {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
}

header h4{
    position: absolute;
    left: 10%;
    bottom: 1rem;
    font-size: 1.6rem;
}

.intro{
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #e60073;
    transition: 1s;
}

.logo-header {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: -50%, -50%;
    color: #ffffff;
}

.logo {
    position: relative;
    display: inline-block;
    bottom: -20px;
    opacity: 0;
}

.logo.active {
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.logo.fade {
    bottom: 150px;
    opacity: 0;
    transform: ease-in-out 0.5s;
}
