/* 
GLOBAL STYLES
*/
body{
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 10px;
    margin: 0;
    width: 100vw;
    text-align: center;
}

img{
    max-width: 100%;
}

hr{
    width: 100%;
    opacity: 0.5rem;
    color: black;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: inherit;
}

/*
HEADER SECTION
*/
header{
    background-color:rgb(218, 44, 44);
    padding: 1rem;
    height: 100vh;

}

nav ul{
    font-size: 1rem;
    display: flex;
    justify-content: center;
}

nav li{
    margin: 0 1rem;

}

header h1{
    font-size: 3rem;
}

header p{
    font-size: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid white;
}

.rotate{
    margin-top: 2rem;
    font-size: 3rem;
    opacity: 0.4;
}

/*
PARALLAX SECTION
*/

.parallax{
background-image: url('Images/Red-Nebula.gif');
height: 100vh;
background-position: center;
background-size: cover;
background-attachment: fixed;
}

.parallax ul{
    color: gainsboro;
    font-size: 1.5rem;
    padding: 1rem;
}

.parallax li{
    margin: 1rem 0;
}

/*
RECENT WORK SECTION
*/

.Recent-Work{
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
    margin: 1rem 0;
}

.Recent-Work-title{
    font-size: 1.6rem;
}

.Recent-Work-info{
    padding: 1rem;

}

.Recent-Work-info h4{
    font-size: 1.4rem;
}

.Feature > li{
    margin: 1rem 0;
    color: purple;
}

/*
CONTACT SECTION
*/

#contact {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    height: 100%;
    background-color: rgb(218, 44, 44);
    color: black;
}

.contact-heading {
    margin: 0%;
    font-size: 5rem;
}

.contact-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

#contact .rotate {
    display: none;
}

@media screen and (min-width: 860px) {
    nav ul {
        justify-content: flex;
    }
    .rotate {
        margin: 2rem 0 0 0;
        writing-mode: vertical-lr;
        text-orientation: upright;
    }
    header {
        height: 100%;
    }
    .Recent-Work {
        flex-direction: row;
    }
    .Recent-Work-info {
        flex: 1;
        padding: 1rem;
    }
    .Recent-Work-images {
        flex: 2;
        border: black 1rem solid;
    }
    .Recent-Work-images img {
        width: 100%;
        height: 100%;
    }
    .posisioning-pin {
        order: 1;
    }
}

.contact-heading {
    margin: 0;
    font-size: 8rem;
}

#contact .rotate {
    display: block;
}

.fade-in-custome {
    opacity: 0;
    animation: fadein ease-in;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

.delay1 {
    animation-delay: 0.5s;
}

.delay2 {
    animation-delay: 1.5s;
}

@keyframes fadein {
    to {opacity: 1;}
}
