:root{
  --threshold:-200%;
}

html,
body {
    font-family: 'Noto Sans', sans-serif;
    color: #333333;
}

a {
    color: #5089a8;

}

html,
body,
div {
    padding: 0;
    margin: 0;
}

html,
body,
main {
    width: 100%;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: #f0f0f0;
}

.logo {
    border-radius: 20px;
    background-color: white;
    padding: 20px;
    aspect-ratio: 1/1;
    shadow-color: black;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.plataformacontainer {
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
    
}

.plataformalogo {
    aspect-ratio: inherit;
    max-height: 60px;
    min-width: 300px;
    border-bottom: 1px solid #c1dee9;
    padding-bottom: 20px;

}


footer {
    font-size: small;
    width: 100%;
    padding-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    border-top: 1px solid #c1dee9;
}

.backdrop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0.02;
    /* filter: saturate(0%); */
    /* filter: grayscale(100%); */
    /* filter: treshold(80%); */

width:800px;

    filter: brightness(calc(100% + var(--threshold))) grayscale(100%) contrast(1000%);
    z-index: -1;
}