body {
    margin-left: 300px;
    margin-right: 300px;
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-wrap: wrap;
    background-color: black;
    color: white;
}

h1 {
    color: orange;
    letter-spacing: -1.45px;
    font-size: 50px;
}


h3 {
    color: orange;
    letter-spacing: -0.75px;
    font-size: 25px;
    line-height: 0;
}


.video-container {
    margin-top: 50px;
    padding: 10px;
    border-bottom: 1px solid orange;
    background-color: black;
    color: white;
}


/* Styling for links */
a {
    color: orange;
    text-decoration: none;
    letter-spacing: -0.75px;
}

a:visited {
    color: orange;
    text-decoration: none;
}

a:active {
    color: orange;
    text-decoration: none;
}

a:hover {
    color: orange;
    text-decoration: none;
}

a:visited:hover {
    color: orange;
    text-decoration: none;
}

a::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: " \f35d";
}


/* Footer */
footer {
    margin-right: 310px;
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: transparent;
}

footer > * {
    background-color: transparent;
    color: orange;
}

#copyright {
    font-family: Arial;
    font-size: 24px;
}

.fa-linkedin {
    background-color: transparent;
    color: #0077B5;
}


#copyright a::after {
    content: " ";
}



/* For screens under 1401px wide */
@media screen and (max-width: 1400px) {
    body {
        margin: 10px;
    }

    .header {
        padding-left: 10px;
        padding-right: 15px;
    }

    .main-container p {
        padding: 10px;
    }

    h3 {
        color: orange;
        letter-spacing: -0.75px;
        line-height: 22px;
        overflow-wrap: break-word;
    }

    
    img {
        width: 100%;
        height: auto;
    }
    

    footer {
        margin-right: 30px;
        position: fixed;
        bottom: 0;
        right: 0;
    }

}



/* For screens under 801px wide */
@media screen and (max-width: 800px) {
    body {
        margin: 0px;
    }

    .header {
        padding-left: 10px;
        padding-right: 15px;
    }

    h3 {
        color: orange;
        letter-spacing: -0.75px;
        line-height: 22px;
    }

    
    img {
        width: 100%;
        height: auto;
    }
    

    footer {
        margin-right: 10px;
        position: fixed;
        bottom: 0;
        right: 0;
    }
}


