body {
    background-color: whitesmoke;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    color: black;
    width: 100vw;
}

.scroll {
    position: fixed;
    right: 0;
    width: 3.5vw;
    height: 105vh;
    background-color: #E5897C;
    z-index: 100;
}

nav {
    background-color: rgba(0,0,0,0.3);
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 99;
    height: 25vh;
}

#nav {
    z-index: 99;
    margin: 3%;
}

#nav h1 {
    text-align: center;
    font-size: 5vh;
    margin-top: 0;
    color: white;
}

#nav .links {
    display: flex;
    justify-content: center;
}

#nav a {
    color: white;
    margin: 0 1vw;
    font-size: 3vh;
    font-family: 'Roboto Mono', monospace;
    text-decoration: none;
}

#nav a:hover {
    color: #E5897C;
}

#nav a:active{
    color: #E5897C;
}

#Home {
    width: 100%;
    height: 100vh;
    background-image: url('./assets/hom2.jpg');
    color: white;
}

.bg {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.content-home {
    padding-left: 30px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(229, 137, 124,0.3);
    margin-top: 0;
}

.content {
    position: absolute;
    bottom: 10%;
}

#Home h1 {
    font-size: 3vw;
    margin: 0;
}

#Home p {
    font-size: 2vw;
    margin: 0;
}

#Home .button {
    font-size: 1.3vw;
    font-family: 'Roboto Mono', monospace;
    background-color: #E5897C;
    border-radius: 5px;
    border: white;
    width: 25vw;
    height: 3vw;
    margin-top: 3vh;
    color: white;
}

#Home a {
    color: white;
    text-decoration: none;
}
.separate {
    height: 100vh;
    background-color: black;
    width: 100vw;
    position: sticky;
    top:-75vh;
}

#About {
    width: 100vw;
    height: 75vh;
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
    padding-top: 25vh;
    align-items: center;
}

#About .left {
    width: 45%;
}

#About .right {
    width: 40%;
}

.sec h2 {
    text-align: center;
    font-weight: bold;
    color: #cc444b;
}

#About .intro {
    text-align: center;
}
.socials {
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
}

.socials i {
    color: black;
}
.socials i:hover {
    color: #cc444b;
}

#Experience {
    width: 100vw;
    height: 75vh;
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
    align-items: center;
    padding-top: 25vh;
    display: grid;
    grid-template-columns: 20% 30% 30%;
}

a {
    color: #cc444b;
    text-decoration: none;
}

a:hover{
    color: #550e11;
    text-decoration: none;
}

#Projects {
    width: 100vw;
    height: 75vh;
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
    align-items: center;
    padding-top: 25vh;
}

.project img{
    width: 30vw;
}

#Skills {
    width: 100vw;
    height: 69vh;
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
    align-items: center;
    padding-top: 25vh;
}

footer {
    width: 100vw;
    background-color: black;
    color: white;
    font-family: 'Roboto Mono', monospace;
    height: 6vh;
    padding: 2vh;
}
footer p {
    text-align: center;
    margin: 0;
}


