.pizza {
    transition: all 300ms;
}

.pizza:hover {
    transform: scale(00.9);
}

.pizza25
{
    width: 78%;
    height: 100%;
}

.pizza28
{
    width: 87%;
    height: 100%;
}

.pizza32
{
    width: 100%;
    height: 100%;
}

body
{
    /*background-color: #020502;*/
    position: relative;
    top: 60px;
    bottom: 500px;
}


footer
{
    text-align: center;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
    background:#212121;
    color: white;
    position: relative;
}

.footer2
{
    text-align:center;
    width:100%;
    display:inline-block;
    vertical-align:top;
    font-size:13px;
    background:#212121;
    color: white;
    position:fixed;
    bottom:0;
}

.prix
{
	display: inline;
	font-style: oblique;
	font-weight: 900;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight:bold;
    color: black;
    font-size: 300%;
}

.img 
{
	position: relative;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.titre
{
    font-weight: 900;
}
.titre2
{
    font-weight: 900;
    padding-bottom: 10px;
}
.details
{
    margin-left: 5%;
}

.carte
{
	background-color: #17a2b7;
	font-size: 36px;
	height: 100%;
    width: 100%;
}

.carte-content{
	display: inline-block;
    vertical-align: middle;
    float: none;
    padding-top: 1%;
    padding-bottom: 1%;
}

.btn-carte {
    color: #FEFEFE;
    background-color: #FB1B1B;
    border-color: #FB1B1B;
}
.btn-carte:hover, .btn-carte:focus, .btn-carte:active, .btn-carte.active, .open>.dropdown-toggle.btn-carte {
    color: #000000;
    background-color: #FEFEFE;
    border-color: #FEFEFE; /*set the color you want here*/
}

.section
{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    position: relative;
    top: 0px;
    bottom:0px;
    width:100%;
    display:inline-block;
    vertical-align:top;
    background:#000000;
    color: #fff;
}

.section2
{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    position: relative;
    top: 0px;
    bottom:0px;
    width:100%;
    display:inline-block;
    vertical-align:top;
}

.error{
    color: red;
}

.success{
    color: #ff9966;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.middlePage{
    position: relative;
    top: 50%;
    transform: translateY(150%);
}

.carte {
    width: 100%;
    height: 100%;
    border:0;
}

.composant {
    height: 100vh;
    overflow: hidden;
    padding-top: 5px;
    padding-bottom: 60px;
    text-align: center;
    justify-content: center;
  }

.grid {
    padding-top: 1%;
    text-align: center;
}

.grid-element {
    transition: all 300ms;
}

.grid-element:hover {
    transform: scale(00.9);
}

.fb-like {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    justify-content: center;
}

.container {
    position: relative;
    margin-top: 2.5%;
}

.container img {
    display: block;
    width: 100%;
    height: 40%;
    padding-top: 5%;
    bottom: 1%;
}

nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    font-family: 'Courier New', Courier, monospace;
    padding: 0 5%;
    height: 100px;
    background-color: #000000;
    text-transform: uppercase;
}

nav .logo {
    float: left;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-style: italic;
    font-size: 2em;
    color: rgb(255, 255, 255);
    transition: all 300ms;
}

nav .logo:hover {
    transform: scale(01.1);
}

nav .logo img {
    float: left;
    display: block;
    width: 90px;
    height: 90px;
    padding-top: 0%;
    padding-left: 0%;
    padding-right: 1%;
}

nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav .links li {
    list-style: none;
}

nav .links a {
    display: block;
    padding: 1em;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: all 300ms;
}

nav .links a:hover {
    transform: scale(01.2);
}

#nav-toggle {
    position: absolute;
    top: -100px;
}

nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
}

nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 3px;
    transition: all .3s ease-in-out;
}

@media screen and (max-width: 768px) {
    nav .logo {
        float: none;
        width: auto;
        justify-content: left;
    }
    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 100px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(0, 0, 0,.8);
        overflow: hidden;
        transition: all .5s ease-in-out;
    }
    nav .links a {
        font-size: 2em;
    }
    nav :checked ~ .links {
        bottom: 0;
    }
    nav .icon-burger {
        display: block;
    }
    nav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
}