@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root
{
    --primary-color:white;
    --secondary-color:rgb(23, 28, 57);
    --infinity-blue:rgb(49,42,69);
    --infinity-orange:rgb(242, 142, 44);
}

*
{
    box-sizing: border-box;
    margin: 0px;
    margin: 0px;

}

body
{
    /*background-color: rgb(0, 112, 152);
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;*/

    font-family: poppins;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /*background: linear-gradient(#eceffe, #ebefff);*/
    background-color: #f9f9f9;
}

p,h1,h2,h3,h4,h5
{
  color: var(--infinity-blue);
}

button
{
  margin-top: 10px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  background-color: var(--infinity-blue);
  color: white;
  transition: transform 0.5s;
}

button:hover
{
  color: white;
  background: rgba(242, 142, 44, 0.8);
}

/*a
{
    font-size: 0.8rem;
    font-weight: 700px;
    color:rgb(49,42,69);
    text-decoration: none;
    padding: 3px 5px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.7s ease;
    white-space: nowrap;
}*/

main a:hover
{
    color: #162532;
    background: rgba(242, 142, 44, 0.8);
    border: 2px solid white;
    text-decoration: none;
    padding: 3px 5px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.7s ease;
    white-space: nowrap;
}


/*@media screen and (max-width: 450px) 
{
  input,
  textarea,
  button,
  select,
  a 
  {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
  a:focus,a:visited,a:active
  {
    outline: none;
  }
  
  *{
      -webkit-tap-highlight-color: transparent;
  }
}*/
