/* colors
dark - 0E1038
light - 3A337F
extra light - a283ff

logo colors
dark - #4b18ca
light - #82e9fe
extra light - #e5fcff
*/
* {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-shadow: 0px 0px 1.5px;
}

body {
    margin: 0;
    padding: 0;
    /* background-color: #0E1038; */
}

img {
    max-width: 100%;
}

h1 {
    font-size: 80px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

p {
    font-size: 18px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {

}

button,
a.button {
    display: block;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    text-align: center;
    position: relative;
    transition: all .35s;
}

button.dark,
a.button.dark {
    color: #4b18ca;
    border: 2px solid #4b18ca;
}

button span,
a.button span{
    position: relative;
    z-index: 2;
}
  
button:after,
a.button:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ff003b;
    transition: all .35s;
}
  
a:hover{
    color: #fff;
}
  
a:hover:after{
    width: 100%;
}















.dark {
    color: #4b18ca;
}

.medium {
    color: #4672fe;
}

.light {
    color: #82e9fe;
}

.extra-light {
    color: #e5fcff;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.column-align-center {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

header {
    padding: 15px 0px;
    background-color: #060720;
}

header .logo img {
    max-height: 100px;
    width: 100px;
}

header .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .menu nav {

}

header .menu nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header .menu nav ul li {
    display: inline-block;
}

header .menu nav ul li a {
    font-weight: 600;
    font-size: 16px;
    /* text-shadow: 0px 0px 10px rgb(255 255 255 / 20%); */
    color: #82e9fe;
    text-decoration: none;
    text-transform: uppercase;
}

header .menu nav ul li a::after {
    content: "";
    height: 2px;
    width: 0px;
    background-color: #82e9fe;
    /* box-shadow: 0px 0px 10px rgb(255 255 255 / 20%); */
    box-shadow: 0px 0px 2px;
    display: block;
    margin: 6px auto 0;
    border-radius: 5px;
    transition: 1s;
}

header .menu nav ul li a:hover::after {
    width: 100%;
}

#about-me {
    padding: 0 0 40px 0;
    background-color: #060720;
    /* border-radius: 100px; */
}

#about-me .photo {
    background-image: radial-gradient(#4672fe 52%,#83e8fe);
    border-radius: 50%;
    overflow: hidden;
    padding: 60px 40px 0 40px;
    animation-name: rotating;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}

#about-me .photo img {
    margin-bottom: -10px;
    transition: 2s;
}

#about-me .photo:hover img {
    transform: scale(1.1);
}

#about-me .border-1 {
    border: 1px solid #5da0ff;
    border-radius: 50%;
    padding: 20px;
    animation-name: scaling;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}

#about-me .border-2 {
    border: 2px solid #5da0ff;
    border-radius: 50%;
    padding: 20px;
}

#about-me .svgs {
    display: flex;
    gap: 20px;
}

#about-me .svgs svg {
    height: 60px;
}

#about-me .svgs svg:nth-of-type(2) {
    height: 60px;
    width: 64px;
}

@keyframes scaling {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotating {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(2deg); 
    }
    100% {
        transform: rotate(0deg);
    }
}