body, html {
    height: 100%;
    margin: 0;
    background-image:  url("../resources/images/background.jpeg");
    background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
    color: #ffff;
    font-family: 'Nunito', sans-serif;

    /* Vignete */
    box-shadow: inset 0 0 5em 1em #000;

}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#logo{
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Tangerine', cursive;
    font-size: 50px;
    margin: 15px 0px 0px 15px;
    
    /* Text not selectable */
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */

}

.container {
    margin-left: 5px;
    margin-right: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container * {
    text-align: center;
    margin: 0;
}

.container h1 {
    font-size: 2em;
    font-weight: bold;
}

a {
    font-size: 1.5em;
    font-weight: bold;
}

a:link {
    text-decoration: none;
    color: #ffff;
}

a:visited {
    text-decoration: none;
    color: #ffff;
}
  
a:hover {
    transform: scale(1.1);
}

.container a:first-of-type {
    margin-top: 30px;
}

#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

ul li {
    margin: 5px;
}

@media only screen and (min-width: 950px) {

	body, html {
		/* Vignete */
	    box-shadow: inset 0 0 10em 2em #000;
	}

    #logo{
        font-size: 100px;
        margin: 50px 0px 0px 50px;
    }

    .container {
        margin-left: 50px;
        margin-right: 50px;
    }

    .container h1 {
        font-size: 5em;
    }
    
    .container a:first-of-type {
        margin-top: 70px;
    }

    ul {
        flex-direction: row;
        gap: 20px;
    }

}