/*
    importing text
*/

@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap");

/* Body and backgroung container */

*{
    margin: 0;
    padding: 0;
}

.container{
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    opacity: 0.88;
    margin-top: 50px;
    margin-left: 12px;
    margin-right: 2px;
}

body{
    background-image: url('../images/images.png');
}

/* Navigation Bar */

.navbar{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}

ul{
    list-style-type: none;
    margin: 0px;
    padding: 0;
    overflow:hidden;
    background-color: rgb(40, 40, 40);
}

li{
    float:left
}

#nav-name{
    float: left;
}

#divider{
    padding-top: 8px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 30px;
    display: block;
    color: white;
}

li a{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    font-size: 17px;
    text-decoration: wavy;
}

li a:hover{
    background-color: #111;
    color: cornsilk;
}

/* Home */

.home img{
    width: 100%;
    opacity: 100%;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
}

.home{
    position: relative;
    text-align: center;
    color:gold;
    padding-top: 0%;
    margin-top: 0%;
}

.text-on-img{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 65px;
    font-weight: 300;
    text-shadow: 5px 5px #222;
}

/* About */

.basic-info{
    display:list-item;
    align-items: center;
    padding-top: 10px;
    margin-left: 20px;
}

#img{
    margin-top: 12%;
    margin-left: 35%;
    display: flex;
    width: 250px;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 4px solid whitesmoke;
    transition: .5s ease;
}

#img:hover{
    cursor:pointer;
    border-radius: 30%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 4px solid whitesmoke;
}

#name{
    margin-left: 25%;
    margin-bottom: 12px;
    color: beige;
    font-size: 34px;
    font-weight: 300;
    text-shadow: 1px 1px black;
    transition: 0.4s ease-in-out;
    font-family: "Dancing Script", cursive;
}

#name:hover{
    font-size: 38px;
    text-shadow: 1px 1px rgb(30, 30, 30);
    text-decoration:underline;
}

.desc{
    background-color:burlywood;
    border-radius: 16px;
    border: 1px outset #222;
    padding: 14px 16px;
    margin-left: 20%;
    margin-right: 25%;
    box-shadow: 4px 2px 2px 4px rgba(0.4, 0.4, 0.4, 0.4);
}

.desc ul{
    background-color:burlywood;
    margin-left: 20%;
    margin-right: 25%;
}

.basic-info h3{
    padding-left: 10%;
    padding-right: 5%;
}

.basic-info p{
    padding-left: 10%;
    padding-right: 5%;
}

/* Skills */

.skill-set{
    align-items: center;
    padding-left: 12px;
    padding-top: 10%;
    padding-bottom: 5%;
    margin-top: 2rem;
    margin-bottom: 5%;
}

.skill-set h4{
    margin-left: 20%;
}

#skill-header{
    margin-bottom: 5%;
    text-align: center;
    color: whitesmoke;
    background-color: #222;
    border-radius: 12px;
}

.progress{
    padding-top: 5%;
    margin-left: 20%;
    background: rgba(255,255,255,0.1);
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    padding: 0 5px;
    display: flex;
    height: 20px;
    width: 500px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

span{
    box-shadow: 0 10px 40px -10px #fff;
    border-radius: 100px;
    background: #fff;
    height: 10px;
    width: 0;
    animation: load 4s normal forwards;
}

@keyframes load {
    0% {width: 0;}
    100% {width: 100;}
}

.backend-circle {
    width: 122px;
    height: 122px;
    border: 2px solid gray;
    border-radius: 50%;
    background: #d2eaf1;
    line-height: 120px;
    text-align: center;
    margin-top: 26px;
    margin-left: 14px;
    color: #1e51dc;
    z-index: 100;
    font-weight: 700;
    font-size: 2em;
    box-shadow: 0 4px 8px 0 rgba(256, 256, 256, 0.2), 0 6px 20px 0 rgba(256, 256, 256, 0.19);
}

.ml-circle{
    width: 122px;
    height: 122px;
    border: 2px solid gray;
    border-radius: 50%;
    background: #d2eaf1;
    line-height: 120px;
    text-align: center;
    margin-top: 26px;
    margin-left: 14px;
    color: #1e51dc;
    z-index: 100;
    font-weight: 700;
    font-size: 2em;
    box-shadow: 0 4px 8px 0 rgba(256, 256, 256, 0.2), 0 6px 20px 0 rgba(256, 256, 256, 0.19);
}

.cir{
    box-sizing: border-box;
    margin-top: 5%;
    margin-bottom: 8%;
    margin-left: 20%;
    margin-right: 45%;
    background-color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.column1{
    float:left;
    width:10%;
    margin-left: 15%;
    padding: 14px;
}

.row1::after{
    content: "";
    clear: both;
    display: table;
}

.column1 p{
    text-align: center;
    margin-left: 34px;
    color: #f2f2f2;
}

#PR{
    text-align: center;
    margin-bottom: 5%;
    color: whitesmoke;
    background-color: #222;
    border-radius: 12px;
}

#paragraph{
    background-color:burlywood;
    border-radius: 16px;
    padding: 20px 24px;
    margin-left: 20%;
    margin-bottom: 18px;
    margin-right: 28%;
    box-shadow: 4px 2px 2px 4px rgba(0.4,0.4,0.4,0.4);
}

/* Project */

.project h2{
    text-align: center;
    background-color: #222;
    border-radius: 12px;
    color: antiquewhite;
}

.slideshow-container * {box-sizing:border-box}

.slideshow-container {
  max-width: 700px;
  position: relative;
  margin: auto;
  margin-top: 2rem;
}

.mySlides {
  display: none;
}

.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;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color:#111;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.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 {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

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

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

/* Contact */
.cont h4{
    margin-top: 4rem;
    background-color: #222;
    border-radius: 12px;
    height: 20px;
    color: antiquewhite;
}

.cont{
    box-sizing: border-box;
}

.column{
    float:left;
    width: 13%;
}

.row{
    text-align: center;
    position: relative;
    left: 350px;
    margin-bottom: 30px;
}

.row::after{
    content: "";
    clear: both;
    display: table;
}

.column a img{
    height: 50px;
    transition: transform 250ms;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 50%;
}

.column a img:hover{
    transform: translateY(-10px);
}

.connect{
    background-color:burlywood;
    margin-top: 5%;
    margin-left: 20%;
    margin-right: 20%;
    padding-bottom: 15px;
    border-radius: 14px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#m1,#m2{
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 50%;
    height: 28px;
    border-radius: 6px;
    border: 1px groove gray;
}

.connect textarea{
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 50%;
    height: 90px;
    border-radius: 6px;
    border: 1px groove rgb(219, 175, 116);
}

.connect button{
    margin-left: 20%;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 10%;
    height: 32px;
    background-color: #222;
    color: #fff;
    font-size: 16px;
    border-radius: 13px;
}

.footer-back{
    padding-top: 5%;
    color: #fff;
    background-color: #444;
    border: 2px solid #333;
    border-radius: 14px;
    margin-top: 10%;
    padding-left: 12px;
    text-align:center;
}

#b{
    background-color: #222;
    border-radius: 12px;
    padding: 6px 8px;
    height: 20px;
    color: antiquewhite;
}

#link{
    text-decoration: solid;
    color: #fff;
    font-weight: 600;
}

#footer{
    font-size: 25px;
}
.footer{
    text-align: center;
}

.footer-back{
    background: #444444;
}