body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    background: url('../img/usfdining.jpg') fixed no-repeat center;
    background-size: cover;
    backdrop-filter: blur(10px);
    background-repeat: repeat;
}

.header-content {
    display: flex;
}

.logo {
    width: 200px;
    margin: 100px auto 50px;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav a {
    background-color: #f0f0f0;
}

section#restaurants ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    section#restaurants ul li {
        margin: 50px;
        text-align: center;
        list-style: none;
    }

        section#restaurants ul li img {
            width: 250px;
            height: 250px;
            border-radius: 20px;
        }

.restaurant-logo-container {
    position: relative;
    display: inline-block;
    color: #fff;
}

    .restaurant-logo-container .info-on-hover {
        top: 50%;
        transform: translate(-50%, -50%);
        color: black;
    }

    .restaurant-logo-container:hover .info-on-hover {
        display: block;
    }

.button {
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

    .button:hover {
        background-color: transparent;
        color: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

.info-on-hover {
    display: none;
    position: absolute;
    left: 50%;
    width:100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    bottom:0;
    padding: 20px 0;
}

@media only screen and (max-width: 1000px) {
    footer {
        position: relative; 
    }
}

@media only screen and (min-width: 1000px) {
    body {
        height: 100vh; 
    }
}
