@import url("https://fonts.googleapis.com/css2?family=Montaga&family=Noto+Sans&display=swap");

:root {
  --font-size: 1.2rem;
}

body {
  background: repeating-linear-gradient(
    45deg,
    #4cecf2,
    #16e0e7 10px,
    #4df7fd 2px,
    #4cf2e4 20px
  );
  margin: 0;
  color: #02283a;

}

.div-centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Montaga", serif;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.para {
  margin-top: 0px;
  font-size: var(--font-size);
}

input {
  font-size: 1rem;
  margin: 15px;
  padding: 10px;
  border-radius: 8px;
  width: 16%;
  border: 2px solid rgb(4, 4, 139);
}

label {
  font-weight: bold;
  font-size: var(--font-size);
}

button {
  cursor: pointer;
  margin: 10px 10px 0;
  padding: 10px 20px ;
  font-size: large;
  font-family: "Montaga", serif;
  font-weight: bold;
  border-radius: 5px;
  color: white;
  border-style: inset;
  background-color: rgb(0, 86, 167);
  border: none;
}

button:hover {
  text-shadow: 2px 2px rgb(4, 85, 207);
  background-color: rgb(0, 60, 128);
}

#text::before {
  content: "Change: ";
}

#text{
  font-size: var(--font-size);
  font-weight: bolder;
  margin: 0 10px ;
  text-decoration: underline;
  color: rgb(18, 12, 68);
}

#error{
  font-size: var(--font-size);
  color: rgb(248, 35, 7);
  /* font-weight: 600; */
}

/* table */

.table {
  font-weight: 600;
  width: 50%;
  text-align: justify;
  border-collapse: collapse;
  font-family: "Noto Sans", sans-serif;
}

.table-caption {
  font-family: "Montaga", serif;
  font-size: var(--font-size);
  font-weight: 600;
  padding-bottom: 20px;
  padding-top: 15px;
}

td,
th {
  border: 2px solid black;
  padding: 0.4rem;
}

/* footer */


footer {
  font-size: medium;
  text-align: center;  
  position: absolute;
  bottom:0;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: #065275;
}

img{
  padding: 10px 5px 0;
  width: 2%;
}