
body {
    background-attachment: fixed;
    transform-origin: center, center;
    background-image: url("grid.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: fill;
}

.bar {
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    top: 8;
    left: 200;
    right: 200;
    width: 70%;
    height: 12%;
    background-color: rgba(71, 79, 94, 0.247);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    z-index: 50;
}


.entry {
    background-color: rgba(71, 79, 94, 0);
    padding: 0.5%;
    font-size: 32;
    color: #FFF8DC;
    transition: all 250ms cubic-bezier(0.68, -0.1, 0.265, 1);
    margin: 20px;
}

.entry:hover {
    background-color: #0bafb88e;
    color: rgb(15, 217, 224);
    border-radius: 6px;
    backdrop-filter: blur(2px);
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding: 200px;
}

.content {
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    justify-items: center;
    align-content: space-between;
    background-color: rgba(71, 79, 94, 0.247);
    backdrop-filter: blur(10px);
    padding-top: 40px;
    padding-bottom: 40px;
}


.text {
    font-size: 18;
    color: #ffffff;
    width: 80%;
}
