@import url('https://fonts.googleapis.com/css2?family=Bilbo');
.body{
    margin: 0px;
    padding: 0px;
    width:100%;
    height:100%;
    background-color: lightcyan;
}
.Welcome{
    width:100%;
    margin:0;
    padding:0;
    display:flex;
    justify-content: center;
    align-items:center;
    font-family: 'Bilbo';
    color:rgb(112, 174, 216);
}

.text{
    font-family: 'Courgette', cursive;
}
.card-body{
    background-color: black;
    color: white;
}
.wave{
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 20%;
    background:url(../images/Purple-wave.png);
    background-size: 200% 20vh;
    z-index:-1;
}
.wave.wave1{
    animation: animate-Wave1 30s linear infinite;
    z-index: -2;
    opacity: 1;
    animation-delay: 0s;
    bottom:0;
}
@keyframes animate-Wave1{
    0%{
        background-position-x: 0%;
    }
    100%{
        background-position-x: 100%;
    }
}
.wave.wave2{
    animation: animate-Wave2 15s linear infinite;
    z-index: -3;
    opacity: 0.8;
    animation-delay: -5s;
    bottom:0;
}
@keyframes animate-Wave2{
    0%{
        background-position-x: 0%;
    }
    100%{
        background-position-x: -100%;
    }
}
/* Nav styles*/
.navbar-wrapper {
    margin-top: 10px;
    width:100%;
    display:flex;
    justify-content: space-between;
    padding-top:10px;
    padding-bottom:5px;
    font-family: 'sans-serif';
}
.left-column{
    display:flex;
}
.name{
    color:black;
    display: flex;
}
.nav-link-wrapper {
    margin-right: 20px;
    font-size: 1em;
    height: 25px;
    border-bottom: 1px solid transparent; 
    transition: border-bottom 0.5s;
    margin-left:15px;
}
.nav-link-wrapper a{
    color: black;
    text-decoration: none;
    transition: color 0.5s;
}
.nav-link-wrapper :hover {
    border-bottom: 1px solid rgb(170, 52, 164);
    color: rgb(170, 52, 164);  
    text-decoration: none;     
}
/**About Me Page**/
#who-am-I{
    background-color:rgba(169, 228, 228, 0.493);
    opacity:1;
    text-align: center;
    font-family:'Courgette';
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding:15px;
}
#who-am-I-text{
    background-color:whitesmoke;
    opacity:0.7;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding:15px;
    text-align: justify;
    font-size: large;
}
.rounded-img{
    border-radius: 5px;
}
/**Buttons on About Me and Projects**/
.Buttons{
    position:relative;
    display:inline-block;
    padding:15px 30px;
    color: rgb(93, 92, 160);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    overflow: hidden;
    font-size: 15px;
    transition:0.2s;
}
.Buttons:hover{
    color: rgb(127, 203, 247);
    background:rgb(40, 99, 109);
    box-shadow: 0 0 10px rgb(112, 174, 216), 0 0 40px rgb(112, 174, 216), 0 0 80px rgb(112, 174, 216);
    transition-delay: 0.2s;
}
.Buttons span{
    position:absolute;
    display:block;
}
.Buttons span:nth-child(1){
    top:0;
    left:-100%;
    width:100%;
    height:2px;
    background:linear-gradient(90deg, transparent, rgb(112, 174, 216));
    animation: animate-Button1 1s linear infinite;
}
@keyframes animate-Button1{
    0%{
        left:-100%;
    }
    50%,100%{
        left:100%;
    }
}
.Buttons span:nth-child(2){
    top:-100%;
    right:0;
    width:2px;
    height:100%;
    background:linear-gradient(180deg, transparent, rgb(112, 174, 216));
    animation: animate-Button2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes animate-Button2{
    0%{
        top:-100%;
    }
    50%,100%{
        top:100%;
    }
}
.Buttons span:nth-child(3){
    bottom:0;
    right:-100%;
    width:100%;
    height:2px;
    background:linear-gradient(270deg, transparent, rgb(112, 174, 216));
    animation: animate-Button3 1s linear infinite;
    animation-delay: 0.5s;
}
@keyframes animate-Button3{
    0%{
        right:-100%;
    }
    50%,100%{
        right:100%;
    }
}
.Buttons span:nth-child(4){
    bottom:-100%;
    left:0;
    width:2px;
    height:100%;
    background:linear-gradient(360deg, transparent, rgb(112, 174, 216));
    animation: animate-Button4 1s linear infinite;
    animation-delay:0.75s;
}
@keyframes animate-Button4{
    0%{
        bottom:-100%;
    }
    50%,100%{
        bottom:100%;
    }
}
