@import url(/assets/fonts/ubuntu.css);

html{

    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;

    scroll-behavior: smooth;

}

html,
body{

    margin: 0;
    padding: 0;

}

body.gradient-background > div.landing-container:nth-child(odd){

    color: whitesmoke;
    background-color:#20454b;
    background-image:
        radial-gradient(at 0% 100%, hsla(265,98%,25%,1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, hsla(240,100%,23%,1) 0px, transparent 50%),
        radial-gradient(at 0% 1%, hsla(286,98%,29%,1) 0px, transparent 50%);

    margin: 0;
    padding: 0;

}

body.gradient-background > div.landing-container:nth-child(even){

    color: whitesmoke;
    background-color:#20454b;
    background-image:
        radial-gradient(at 0% 1%, hsla(265,98%,25%,1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(240,100%,23%,1) 0px, transparent 50%),
        radial-gradient(at 0% 99%, hsla(286,98%,29%,1) 0px, transparent 50%);

    margin: 0;
    padding: 0;

}

h1{

    font-size: 3.9rem;
}

h2{

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 3rem;
    margin: 0;
    padding: 10px;

}

h2 img{

    width: 50px;
    height: 50px;

}

span.required{
    font-size: 0.6rem;
    color: red;
}

span.number{

    display: flex;
    align-items: center;
    justify-content: center;

    color: black;
    background-color: whitesmoke;
    mix-blend-mode: screen;
    width: 26px;
    aspect-ratio: 1;
    text-align: center;
    border-radius: 100%;

}

.landing-container{

    min-height: 100vh;
    min-width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

ul.p-list-row{

    list-style: none;
    margin-block: 0;
    padding-inline: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

}

ul.p-list-row li{

    --gap: 10px;
    --img-width: 50px;
    --img-li-height: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--gap);

    min-width: calc(var(--gap) + var(--img-width));
    max-width: calc(var(--gap) + var(--img-width));
    height: var(--img-li-height);

    padding: 10px;
    margin: 5px;

    transition: background-color 0.1s ease-in-out;

    border-radius: 10px;
    backdrop-filter: blur(1px);

}

ul.p-list-row li a{

    text-decoration: none;
    color: inherit;

}


ul.p-list-row li img{

    width: var(--img-width);

}

ul.p-list-row li:hover{

    background-color: #f5f5f51a;
    

}

a.next-arrow{

    position: relative;

    font-size: 3.9rem;
    text-decoration: none;
    color: inherit;
    animation: bounce 1.5s infinite;

}

a.up-arrow{

    display: block;
    position: relative;

    font-size: 3.9rem;
    text-decoration: none;
    color: whitesmoke;
    animation: bounce 1.5s infinite;
    width: 80px;
    aspect-ratio: 1;
    height: auto;

}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

.float{

    position: fixed;

    background-color: #f5f5f526;
    /* width: 80px; */
    
    text-align: center;
    margin: 10px;
    border-radius: 100%;

    /* Define the animation name and link it to the scroll timeline */
  animation: fadeIn 1s forwards;
  animation-timeline: scroll();
  /* The view() function can be used to control when it starts/ends based on visibility in the viewport */
  animation-range: 0 500px; /* Animation progresses from the start of the scrollport to 100px down */


}

.float.right{

    right: 0;

}

.float.bottom{

    bottom: 0;

}

@keyframes bounce {
    0%, 100% {
      top: 0;
      /* Element is at the top/resting position */
      animation-timing-function: ease-in; /* Slow start (downward motion) */
    }
    50% {
      top: 10px; /* Element drops down 100px */
      animation-timing-function: ease-out; /* Fast end (upward motion) */
    }
  }

  #main{

    

  }

#main h1{

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    margin: 10px 0;
    padding: 10px 0;

    min-width: 400px;

}

#main h1 span:first-of-type{

    opacity: 0.5;
    font-size: 2rem;
    text-transform: uppercase;

}

p{

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 10px;
    text-align: center;

    max-width: 768px;

}

div.custom{

    flex-direction: row;
    justify-content: space-around;
    align-items: center;

}

div#how-to-connect ul.p-list-row{

    flex-direction: column;
    justify-content: center;

}

div#how-to-connect ul.p-list-row li{

    max-width: unset;
    height: unset;

}



div#how-to-connect ul.p-list-row li a{

    display: flex;
    flex-direction: row;
    gap: 10px;

}

div#how-to-connect ul.p-list-row li{

    background-color: #f5f5f51a;
    border-radius: 10px;
    backdrop-filter: blur(1px);

}

div#how-to-connect ul.p-list-row li:hover{

    background-color: #f5f5f551;
    border-radius: 10px;
    backdrop-filter: blur(1px);

}

div#how-to-connect ul.p-list-row div.text {

    min-width: 250px;
    flex-direction: column;
    justify-content: center;

}

div#how-to-connect ul.p-list-row div.text *{

    margin: 0;
    padding: 0;
    text-align: start;
    justify-content: start;

}

div.custom p{

    max-width: 400px;
    margin: 0;

    text-align: start;

}

div#how-to-connect ul.p-list-row div.text h3{

    font-weight: 300;

}

div#how-to-connect ul.p-list-row div.text hr{


    border: none;
    background-color: #f5f5f52c;
    height: 1.5px;
    border-radius: 10px;
    backdrop-filter: blur(1px);
    margin: 2px 0;

}

div#how-to-connect ul.p-list-row div.text p{

    font-size: 0.9rem;
    opacity: 0.5;

}

table{

    padding: 5px;
    margin: 20px 10px;
    min-width: 400px;

    border-collapse: collapse;

}

table caption{

    text-align: start;
    margin: 10px;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    min-width: 150px;

}

table th, td{
    text-align: start;
    padding-right: 5px;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 10px;

}

table th{
    font-weight: 300;

}

table tr th{

    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.8);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;

}

table tr td{

    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;

}

table tr td a{

    color: #00ff90;
    text-decoration: none;

}

table tr td a:hover{

    text-decoration: underline;

}

table tr:nth-child(odd) th,
table tr:nth-child(odd) td{

    background-color: rgba(245, 245, 245, 0.05);
    backdrop-filter: blur(1px);

}

@media (max-width: 700px) {
    
    div.custom{

        flex-direction: column;
        justify-content: center;
        gap: 25px;

    }

    div.custom h2,
    div.custom p{

        /* text-align: center; */
        justify-content: center;
        text-align: center;

    }

}
