*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

html{
    scroll-behavior: smooth;
}

.header{
    min-height: 100vh;
    width:100%;
    background-image: url(images/Dark\ Space.png);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
.links{
    flex:1;
    text-align: right;
}
.links ul li{
    list-style: none;
    display: inline-block;
    padding: 10px 25px;
    position:relative;
}

.links ul li a{
    color: rgb(182, 179, 179);
    text-decoration: none;
    font-size:25px;
}

.links ul li::after{
    content: " ";
    width: 100%;
    height: 2px;
    background:#34568B;
    display: block;
    margin: auto;

    transform: scaleX(0);
    transform-origin: right;
    transition: transform 250ms ease-in;

}
.links ul li:hover::after{
    transform: scaleX(1);
    transform-origin: left;

}
.text-box{
    width: 90%;
    color: whitesmoke;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}

.arrow{
    height: 50px;
    width: 30px;
    border: 2px solid whitesmoke;
    position: absolute;
    left: 50%;
    bottom: 20px;
    border-radius: 50px;
    cursor:pointer;
}
.arrow::before,
.arrow::after{
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    border: 2px solid whitesmoke;
    height: 10px;
    width: 10px;
    transform: translate(-50%,-100%) rotate(45deg);
    border-top: transparent;
    border-left: transparent;
    animation: arrow 1s ease-in-out infinite;
}
.arrow::after{
    top: 30%;
    animation-delay: 0.3s;
}
@keyframes arrow{
    0%{
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    60%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        top: 90%;
    }
}

/*--- aboutMe ---*/

.aboutMe{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color:black;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    flex-basis:31%;
}
.col{
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-left: 15%;
    margin-right: 15%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;

}
.col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2)
}

/*--- Why ---*/

.Why{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

/*--- Quotes ---*/

.Quotes{
    width: 100%;
    background-color:#101010;
    color: whitesmoke;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.Quotes p{
    color: whitesmoke;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: center;
    padding-bottom:50px;
}

/*--- Socials ---*/

.Socials{
    width: 100%;
    background-color:#101010;
    color: whitesmoke;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.Socials p{
    color: whitesmoke;
    font-size: 15px;
    font-weight: 300;
    line-height: 15px;
    padding: 10px;
    text-align: center;
    padding-bottom:50px;
}

.social-menu{
    background: #101010;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab{
    color:white;
    font-size: 20px;
    font-weight: lighter;
    font-family: Source Sans Pro;
    margin-top: 0;
}
.fab:hover{
    color: #3b5999;
    border: 1px #3b5999;
    transition: .5s;
}
.social-menu li{
    list-style: none;
    margin: 10px 30px;
    display: inline-block;
    font-size: 20px;
    padding: 20px 20px;
    color: whitesmoke;
    border: 1px solid #fff;
    border-radius: 50%;
    transition:.5s;
}
.social-menu li:hover{
    color: #292929;
    border: 1px solid #292929;
    transition: .5s;
}











