@import url('https://fonts.googleapis.com/css2?family=Island+Moments&family=Kaushan+Script&family=Poppins:wght@500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}
#container{
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7),#675afe),url("images/startbild.jpg");
    /*background-position: center;*/
    background-size: cover;
    padding: 10px 10%;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
header .logo p{
    font-size: 70px;
    color: #fff;
    font-weight: bold;
    font-family: 'Island Moments', cursive;
}
header .menu{
    display: flex;
    list-style: none;
}
header .menu li {
    margin: 0 15px;
}
header .menu li a {
    text-decoration: none;
    text-transform: capitalize;
    color: #fff;
}
.container-text {
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container-text h1 {
    color: #fff;
    font-size: 70px;
    text-transform: capitalize;
    font-family: 'Kaushan Script', cursive;
}
.container-text p {
    color: #fff;
    font-size: 16px;
    margin: 20px 0 30px 0;
}
.container-text a {
    color: #fff;
    text-decoration: 0;
    text-transform: uppercase;
    padding: 10px 30px;
    border: 2px solid #fff;
    border-radius: 6px;
    transition: 0.5s;
}
.container-text a:hover{
    letter-spacing: 1px;
}
::-webkit-scrollbar{
    width: 8px;
    height: 5px;
}
::-webkit-scrollbar-thumb{
    background-color: #ccc;
}
.tittle-section {
    text-align: center;
    margin-top: 50px;
    text-transform: uppercase;
    font-weight: bold;
    color: #675afe;
    font-size: 25px;
}
.sub-tittle-section {
    text-align: center;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 20px;
}
#a-propos{
    height: 90vh;
    margin: 0 10%;
}
.description-photo{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    height: 358px;
}
.description-photo .desc h2 {
    text-align: center;
    margin: 50px 0;
}
.heure{
    color: #675afe;
}
#archive{
    height: 80vh;
    margin: 0 10%;
}
table.content {
    border-collapse: collapse;
    margin: 32px 0;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

table.content thead tr {
    background-color: #675afe;
    color: white;
    font-weight: bold;
    text-align: left;
}

table.content th,
table.content td {
    padding: 12px 16px;
}

table.content tbody tr {
    border-bottom: 1px solid #ccc;
}

table.content tbody tr:last-of-type {
    border-bottom: 2px solid #675afe;
}

table.content tr.active:hover {
    font-weight: bold;
    color: #675afe;
}
/*.desc-archive{*/
/*    margin-left: 20px;*/
/*}*/
#contact {
    height: 100vh;
    margin: 0 10%;
    width: 80%;
}
#contact div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: calc(100vh - 100px);
}
#contact form{
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
    transition: 0.5s;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 50px rgba(0,0,0,0.4);
}
/*#contact form:hover {*/
/*    background-color: #675afe;*/
/*}*/
label{
    padding: 5px 0;
}
form:hover label {
    color: #fff;
}
textarea,input{
    padding: 5px;
    outline: 0;
    border-radius: 6px;
    border: 2px solid #675afe;
}
textarea{
    margin-bottom: 10px;
    resize: none;
}
input[type="submit"]{
    background-color: #675afe;
    color: #fff;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.5s;
}
/*input[type="submit"]:hover{*/
/*   border: 2px solid #fff;*/
/*}*/
.sociale {
    flex-basis: 10%;
    height: 100%;
}
.sociale ul {
    list-style: none;
    margin: 0 auto;
}
.sociale ul li {
    margin: 25px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #675afe;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
}
.sociale ul li a i {
    font-size: 18px;
    color: #675afe;
}
.sociale ul li:hover{
    background-color: #675afe;
    transform: scale(1.2);
}
.sociale ul li:hover i{
    color: #fff;
}
.image-contact{
    flex-basis: 30%;
}
.image-contact img{
    width: 100%;
    height: 400px;
    border-radius: 20px;
    /*border: 2px solid #675afe;*/
}
.description-photo img{
    width: 28%;
    border-radius: 20px;
}

footer{
    background-color: #000;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    font-size: 10px;
}
