@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&display=swap');

:root {
    /* --primary-color: rgb(110, 110, 112); */
     /* --secondary-color: #A3A3A3; */
      /* --third-color: rgb(220, 220, 220); */
    --primary-color:#A9E3E5;
    --secondary-color:#212D2D;
    --third-color:#212D2D;
}
body {
    /* background-image: url('images/img.jpg'); */
    height: 100vh;
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(5, 238, 188, 0.479);
    color: rgb(14, 49, 204);
  }
  h1{
    text-align: center;
    color: black;
  }
main{
    margin: 0 auto;
    border: 2px solid rgb(20, 3, 250);
    border-radius: 25px;
    text-align: center;
    height:auto
}
/* h3{
    border-bottom: 1px solid darkblue;
    width: 50%;
} */
p{
    padding: 50px;
    text-align: center;
    font-size: large;
}
input,button{
    
    height: 25px;
    border-radius: 10px;
    color: rgb(0, 0, 0);
    background-color:cornsilk;
    font-size: large;
}
footer {
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    /* padding: 5rem; */
    color:#212D2D;
    margin-bottom: 0px;
    margin-top: 10%;
}

footer ul {
    list-style-type: none;
    padding-inline-start: 0;
    word-spacing: 15px;
}

footer li {
    display: inline;
}

footer a {
    text-decoration: none;
    color: #212D2D;
    font-size: medium;
    font-weight: 900;
}

footer div {
    text-align: right;
    padding-right: 30px;
}