html {
    scroll-behavior: smooth;
  }
body{
    font-family: 'Raleway';
}
a {
    text-decoration: none;
}

header{
    display: flex;
    position: fixed;
    top: 0px;
    flex-wrap: wrap;
    width: 100%;
    left: 0px;
    justify-content: flex-end;
    align-items: center;
    background-color: #F6F6F8;
}

.red-text{
    color: #C60021;
}

header a {
    text-decoration:none;
    color: black;
    font-size: 2.2rem;
    
}

header a:hover{
    background-color: #C60021;
    color: #F6F6F8;
    
}
.seccion{
    padding: 1% 1% 1% 1%;
}
#about{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    right:0px;
    background-color: #999999;
    height: 100vh;
}

#img-div {
    display: flex;
    justify-content: center;
}

#my-img{
    max-width: 30%;
    border-radius: 50%;
}

#about-me-text-div{
    width: 70%;
    padding-top: 1%;
    align-content: center;

}

#about-me-text{
    color: white;
    font-weight: normal;
}

strong{
    color: #003333;
    font-style: italic;
    
}

#project-title {
    color: #F6F6F8;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-weight: bold;
    font-size:4rem;
}
#projects {
    scroll-behavior: smooth;
    background-color: #669999;
    height: 100vh;
    display: flex;
    flex-direction: column;
   
    padding: 2.5% 5% 0 5%;
}

.project-row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;

}
.project {
    width: 30%;
    background-color: #003333;
    display: flex;
    flex-direction: column;

}

.project-image{
    width: 100%;
}

.project-text{
    align-self: center;
    color: #F6F6F8;
    font-weight: bolder;
}
span{
    color: #003333;
}
.code{
    transition: color 0.3s ease-out;
}
a:hover span {
    color: #C60021;
    font-weight: bold;
}

.btn{
    display: flex;
    align-self: center;
    border-radius: 15%;
    padding: 1% 1% 1% 1%;
    background-color: #F6F6F8;
    color:#003333;
    font-weight:bold;
}

#btn-container{
    display: flex;
    height: 20%;
    align-content: flex-end;
    justify-content: center;
}

.btn:hover{
    padding: 1% 2.5% 1% 2.5%;
    transition: all 0.3s ease-in-out;
}

#contact-me{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 100vh;
    background-image: linear-gradient(62deg, #669999 0%, #003333 100%);
    color: #F6F6F8;
   
}

.fa, .fab, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

#contact-me h1{
    
    font-weight: bold;
    font-size:4rem;
    align-self: center;
    display: flex;
    justify-content: center;
}
#contact-me p{
    
    font-style: italic;
    font-size:1.5rem;
    align-self: center;
    display: flex;
    justify-content: center;
}

.contact-details{
    font-size: 2.4rem;
    text-shadow: 2px 2px 1px #1f1f1f;
    transition: transform 0.3s ease-out;
    color:#F6F6F8;
    padding-bottom: 5%;

}

#contact-links {
    padding-top: 15%;
    display: flex;
    flex-direction: column;
   
}

