/*
  Auteur : Phydor Chan
  Date :   05.06.23
  Version: 1.0
  Description: css projet 307
*/


* {
    box-sizing: border-box;
}

body
{
    background-color: black;
}

.mainBody
{
    background-image: url("../img/space-backgroud.png");
    background-color: black;
}

.button {
    background-color: black;
    /* yellow */
    border: 5px solid #f0e266;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.button:hover {
    opacity: 0.5;
    transition: .2s ease;
}


footer {
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding-top: 20px;
}

#banner_principal {
    background-color: black;
}


.img_header {
    position: relative;
    height: auto;
    margin: 10px;
}

.accueil {
    border-radius: 8px;
    opacity: 1;

    backface-visibility: hidden;

    display: block;

    align-content: baseline;

    height: auto;

    margin-bottom: 2%;
    margin-left: auto;
    margin-right: auto;

    padding: auto;

    cursor: pointer;
}

.accueil:hover .image {
    opacity: 0.5;
    transition: .2s ease;
}

a
{
    cursor: pointer;
}

#mapid {
    opacity: 1;
    height: 500;
    width: 100%;
}


.column {
    float: left;
    width: 33%;
    padding: 10px;
}

#menuToggle input {
    visibility: hidden;
}

#menuToggle {
    height: 0;
}

#menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
    position: fixed;
    top: 0;
    width: 100%;
    font-family: helvetica, arial;
}

#menu a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 18px 18px;
    text-decoration: none;
}

#menu a:hover:not(.active) {
    background-color: #333;
}

#menu a.active {
    background-color: #FFFFFF;
    color: black;
}

h1 {
    color: white;
    font-family: helvetica, arial;
}

h2 {
    color: white;
    font-family: helvetica, arial;
}

.text {
    color: white;
    font-family: helvetica, arial;
}

.styled-table {
    color: white;
    font-family: helvetica, arial;
    border-collapse: collapse;
}

.styled-table thead tr {
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}