/* ##### GENERAL ##### */
:root{
    --font: "Raleway", sans-serif;
}

html{
    font-family: var(--font);
    text-align: center;
    background-image: url('../img/bg.jpg');
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    color: white;
}

body{
    padding-top: 7%;
}

img{
    width: 128px;
    border-radius: 50%;
}

h1{
    letter-spacing: 1px;
}

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

ul{
    list-style-type: none;
}

header li{
    display: inline-block;
    margin: 10px;
}

header li a{
    padding: 10px;
    font-size: 1.5em;
}

header li a:hover{
    position: relative;
    bottom: 10px;
}

main ul{
    margin-top: 100px;
}

main li a{
    display: block;
    width: 30%;
    margin: 30px auto 30px auto;
    padding: 10px;
    border: 2px solid white;
    border-radius: 10px;
}

main li a:hover{
    background-color: white;
    color: black;
}