body {
    background: black;
    font-family: 'Poppins', sans-serif;
}

h1 {
    margin-left: 1em;
    letter-spacing: 0.3em;
}


p {
    width: 300px;
    margin-left:4.5em;
    margin-top: 2em;
    font-family: 'Lato', sans-serif;
    font-size: 1.5em;
    line-height: 1.5em;
}

#verticalLine {
    position: absolute;
    top: 20%;
    left: 40%;
    height: 350px;
    border-left: 0.2em solid #FA7268;
    color: white;
}

#horizontalLine {
    position: absolute;
    margin-top: 0.2em;
    margin-left: -5em;
    width: 300px;
    border-top: 0.2em solid #FA7268;
}

.linksToReference {
    position: absolute;
    display: flex;
    margin-top: 9em;
    margin-left: 2.3em;
    width: 400px;
    justify-content: space-between;

}

.linksToReference a {
    text-decoration: none;
    color: white;
}

.linksToReference a:hover {
 color: #FA7268;
 cursor: pointer;   
}

.sidebarContact {
    position: fixed;
    top: 50%;
    right: -350px;
    transform: translateY(-60%);
    width: 350px;
    height: auto;
    padding: 20px;
    background: #FA7268;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    box-sizing: border-box;
    transition: 0.5s;
}

.sidebarContact.active {
    right: 0;
}

.sidebarContact h2 {
    margin: 0 0 20px;
    padding: 0;
    color: white;
}

.sidebarContact input, textarea {
    width: 100%;
    height: 40px;
    padding: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    /* border: 1px solid rgba(0, 0, 0, .5); */
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border: none;
    border-radius: 0;
    outline: none;
}
.sidebarContact input[type="submit"] {
    background: #36454f;
    color: white;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.sidebarContact textarea {
    height: 90px;
    resize: none;
}

.toggle.togActive {
    color: #FA7268;
}

@media screen and (max-width: 660px) {
    #verticalLine {
        left: 20%;
        height: 300px;
    }

    #horizontalLine {
        width: 250px;
    }

    h1 {
        font-size: 1.5em
    }

    p {
        font-size: 1.2em;
        margin-left: 5.5em;
    }
    
    .linksToReference {
        margin-top: 11em;
        width: 310px;
        color: white;
    }

    .sidebarContact {
        z-index: 1;
    }
    .sidebarContact.active {
        width: 100vw;
    }
}