body {
    background-image: url(pixelart.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

@font-face {
    font-family: 'customfont';
    src: url('Lemon.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.lien_deco {
	color: white;
	text-decoration: none;
}
.header {
    background-color: #1D1D1D;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-title {
    font-family: 'customfont';
    text-align: center;
    color: white;
    font-size: 160%;
    margin-top: 1%;
}

.header-subtitle {
    font-family: 'customfont';
    text-align: center;
    color: white;
    font-size: 100%;
    margin-top: -2.5%;
}

.log {
    margin-right: 4%;
    margin-top: -6%;
    float: right;
}

.text {
    font-family: 'customfont';
    text-align: center;
    color: white;
    font-size: 100%;

}
.container {
    margin-top: 7%;
    display: grid;
    grid-template-columns: auto auto ;
    margin-left: 15%;
    margin-right: 15%;
    grid-gap: 25%;
}

.grid-container {
    display: grid;
    height: 200%;
}


.Button {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'customfont';
    font-size: 110%;
    background: #1D1D1D;
    padding: 20px 50px;
    border-color: #333;
    transition: all 0.4s ease 0s;
    cursor: pointer;
    
}

.Button:hover {
    color: white;
    background: #1D1D1D;
    transition: all 0.4s ease 0s;
    outline-offset: -5px;
    outline: 5px solid white;
}

.LoginButton {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'customfont';
    font-size: 100%;
    background: #1D1D1D;
    padding: 10px 20px;
    border-color: #333;
    transition: all 0.4s ease 0s;
    cursor: pointer;
    
}

.LoginButton:hover {
    color: green;
    background: #1D1D1D;
    transition: all 0.4s ease 0s;
    outline-offset: -1px;
    outline: 1px solid green;
}

.LogoutButton {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'customfont';
    font-size: 100%;
    background: #1D1D1D;
    padding: 10px 20px;
    border-color: #333;
    transition: all 0.4s ease 0s;
    cursor: pointer;
    
}

.LogoutButton:hover {
    color: red;
    background: #1D1D1D;
    transition: all 0.4s ease 0s;
    outline-offset: -1px;
    outline: 1px solid red;
}
  
