@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    padding: 0;
    margin: 0;
    background: rgba(30, 30, 30, 0.5);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav {
    background-image: url("img-mbdtf.png");
    background-repeat: repeat;
    background-position: cover;
    padding: 0px;
    height: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
}

nav .title {
    margin-top: 20px;
}

nav .middle {
    text-align: center;
    /*width: clamp(150px, 90%, 800px);*/
    margin-top: 10px;
}

nav .middle span {
    text-align: left;
}

nav .bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px
}

nav .bottom a {
    padding: 10px 15px;
    background: rgba(121, 119, 119, 0.35);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(42, 42, 42, 0.15);
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
    transform: scale(1);
}

nav .bottom a:hover {
    transition: 0.2s;
    transform: scale(1.1);
}

nav .backdrop {
    padding: 10px 15px;
    background: rgba(121, 119, 119, 0.35);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(42, 42, 42, 0.15);
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
    transform: scale(1);
    margin-top: 25px;
}

footer {
    background-color: #787676;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 64px;
    margin-top: 16px;
}


