/*
But :    Exercice boucles JavaScript
Auteur : Bernardo Simoes
Date :   16.05.2024 / V1.0 
*/

/* Styles pour les cellules du tableau */
table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid black; 
    padding: 0; 
    text-align: center; 
    width: 30px; 
    height: 30px; 
    background-color: white;
    font-size: 18px; 
    
}

body{
    background-image: url(/Images/logo.png);
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    display: flex;
    align-items: center; /* Align the items vertically in the center */
  }
  
  a {
    text-decoration:none;
    color: black;
  }
  
  header img:hover{
    transform: scale(1.1);
  }
  
  header h1{
    margin-left: 10px;
  }
  header h1:hover{
    transform: scale(1.1);
  }