body{
    margin: 0px;
    overflow: hidden;
}

.container{
    width: 100vw;
    height: 100vh;
    
    background-image: url("https://512pixels.net/downloads/macos-wallpapers/11-0-Color-Day.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.topBar{
    width: 100vw;
    height: 18px;
    background-color: rgba(15, 15, 15, 0.352);
    
    display: flex;

    backdrop-filter: blur(80px);
}

.topBar img{
    width: 14px;
    height: 14px;
    margin-left: 14px;
    margin-right: 14px;
    filter: invert(100%);
}

.topBar p{
    font-size: 11px;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-top: 2px;
    margin-bottom: 0px;
    margin-left: 8px;
    margin-right: 8px;

}

.topBar p:hover{
    font-size: 14px;
    color: whitesmoke;
    transition: 0.5s;
    text-decoration: underline;
    cursor: pointer;
}

.midfield{
    width: 100vw;
    height: 75%;
}

.bar{

    margin-top: 80px;

    width: 90vw;
    height: 10vh;
    background-color: rgba(15, 15, 15, 0.256);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.269);

    margin-bottom: 20px;

    display: flex;
    justify-content: space-around;

}

.bar img{
    width: 70px;
    height: 70px;
}

.bar img:hover{
    width: 100px;
    height: 100px;

    transition: 1s;
    padding-bottom: 10px;
    cursor: pointer;
}