/*
        Author: Bernardo Simoes
        Date: 23.05.2024
        Description: Exercice 16, fonctions jquery
*/
body {
    margin: 0px
}

#mainContainer {
    background-color: lightgray;
    padding: 50px;
}

.ligne {
    display: flex;
    align-items: top;
    padding-bottom: 10px;
    padding-top: 5px;
    border-bottom: 1px;
    border-bottom-style: solid;
}

.ligne_2 {
    display: flex;
    align-items: top;
    padding-bottom: 10px;
    padding-top: 5px;
    border-bottom: 1px;
    border-bottom-style: solid;
    cursor: pointer;
}

input[type=button] {
    margin-right: 5px;
    margin-top: 5px;
    height: 30px;
}

.divText {
    background-color: lightskyblue;
    border: 2px;
    border-style: dotted;
    padding: 10px;
    text-align: center;
    text-align: justify;
}

.boldRedText {
    color: red;
    font-weight: bold;
}

.underlineClass {
    text-decoration: underline;
}

p {
    margin-right: 10px;
}

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);
  }