:root{
    --icons-dimension: 6rem;
    --main-color: #1C1D20
}

html{
    font-family: 'Open Sans', sans-serif;
    background-color:var(--main-color);
}

#header{
    color: white;
    position: fixed;
    width: 100vw;
    text-shadow: 1px 1px 10px black;
    font-size: 24px;
    margin: 0;
    padding: 2em 0 0 0; 
    height : 3em;
}

#logo{
    position: absolute;
    left: 10%;
    margin: 0;
    padding: 0;
}

ul#menu{
    position: absolute;
    right: 10%;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

ul#menu li{
	list-style: none;
    float: left;
    margin: 0 1rem;
}
ul#menu li a{
    color: white;
    text-shadow: 1px 1px 10px black;
    text-decoration: none;
    transition: all .3s ease;
}
ul#menu li a:hover{
    color: darkgoldenrod;
}

a { text-decoration: none;
    color: white;
     transition: all .3s ease;
}

a:hover {color: darkgoldenrod;
    
    
}
#content{
    width: 100%;
    margin-top: 10vh;
    height: 15vh;
    padding-bottom: 70vh;
    color: azure;

    display: block;
    position: relative;
    background-color: var(--main-color);
    z-index: 1;
}

#social-icons{
    max-width: 40vw;
}

#social-icons ul{
    display: flex;
    justify-content: space-between;
    padding: 0;
}

#social-icons ul li{
    list-style: none;
    float: left;
}

.icons{
    max-width: var(--icons-dimension);
    max-height: var(--icons-dimension);
    width: 20vw;
    /* height: 20vw; */
    /* background-color: green; */
    /* border: 1px solid black; */
    transition: all .2s ease-in-out;
}

.icons:hover{
    transform: scale(1.1);
}
.icons a img{
    width: 100%;
    height: auto;
}
.bold{
    font-weight: bold;
}
.italic{
    font-style: italic;
}
.middle{
    text-align: center;
    margin: 0 auto;
}
.big{
    font-size: 2rem;
}

.parallax { 
    position: relative;
    top : -5rem;
    z-index: -100;
    /* The image used */
    background-image: url("./img/bg.jpg");


    /* Set a specific height */
    height: 100vh; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}