*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: 0.2s all ease-in-out;
    user-select: none;
}

body{
    height: 100vh;
    background-image: url(./pexels-kienvirak-4991338.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-clip: content-box;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selekt{
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(3px);
    border-radius: 50px;
}

div.div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
}

img.log{
    width: 40px;
    user-select: none;
}

div.div:hover{
    cursor: pointer;
    width: 200px;

}

div.div:hover img.log{
    transform: translate(-50px);
}

p.logut{
    position: absolute;
    font-family: "Anton", sans-serif;
    font-size: 20px;
    opacity: 0;
}

div.div:hover p.logut{
    opacity: 1;
    transform: translate(20px);
}