*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 100%;
    min-height: 100dvh;
    background-image: linear-gradient(rgba(7, 7, 7, 0.711), rgb(7, 7, 7, 0.451)), url(img/reflexao.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

div.header {
    text-align: center;
    width: 100%;
    min-width: 400px;
    height: 120px;
    margin: auto;
    background-position: top center;
    background-color: rgba(12, 11, 11, 0);
    position: absolute;

    top: 0%;
    left: 0%;
}

div h1 {
    color: rgb(236, 238, 236);
    font-size: 4em;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10px;

    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.603) ;

}

.bar {
    display: flex;
    text-align: center;
    justify-content: center;
    
}

.containere {
    width: 100%;
    max-width: 50px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.603) ;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.438)   ;

    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 10px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
    position: center;

    backdrop-filter: blur(0px);
    overflow: hidden;
    transition: 0.5s;
}

a {
    text-decoration: none;
}

.texto {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    color: aliceblue;
    text-decoration: none;
    font-weight: bolder;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2em;
    transform: scale(1);
    transition-duration: transform 10s;
}

.containere:hover {
    transform: scale(1.3);
    backdrop-filter: blur(100px);
}

.container {
    width: 100%;
    max-width: 500px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.603);
    border-radius: 50px;
    padding: 35px;
    margin: auto;
    backdrop-filter: blur(0px);
    overflow: hidden;
    transition: backdrop-filter 0.5s;
}

.text {
    color: white;
    position: relative;
    top:200px;
    transition: top 1s;
}

.container:hover .text {
    top: 0;
}

.container:hover{
   backdrop-filter: blur(10px);
}