* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #acbace;
    font-family: Arial, Helvetica, sans-serif;
}
a {
    text-decoration: none;
    color: rgb(255, 255, 255);

    
}
a:hover {
    color: #F7AB7E;
    transition: all 0.5s ease ;
    z-index: 2;

}

header {
    background: #77675E;
    position: fixed;
    width: 100%;
    top: 0px;
    height: 50px;
    font-family: prata;
    
}
.smallhead {
     text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: prata;

}
#banner {
    background-image: url("../img/off-campusseries_jackets-scaled_56e3c289-529f-491a-b1e4-79e8923d417e.jpg");
    height: 100vh;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;

    
}

.bannertext {
    margin-top: 100px;
    font-size: 400%;
    text-align: center;
    font-family: prata;
    color: white;
    text-shadow: 1px 1px 7px rgb(43, 43, 43);
}

nav {
    text-align: center;
    padding: 5px;
    font-size: 32px;
    font-family: Prata;
}
nav ul li {
    display: inline;
    margin-right: 10px;
}


ul
main {
    margin-top: 30px;
}
main {
    display: grid;

    padding: 10px;
}
footer {
    background: #77675E;
    padding: 5px;
    min-height: 100px;
    text-align: center;
    margin-top: 30px;
    color: rgb(255, 255, 255);
}


/* Gallery */
.grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr; */
    /* grid-template-columns: repeat(4, 1fr); */

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 5px;
    place-items: center;
    margin-top: 40px;
}
.grid-item {
    background-color: rgba(164, 170, 173, 0.528);
    padding: 10px;
    text-align: center;
    box-shadow: 5px 5px 5px rgba(59, 59, 59, 0.483);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: blanchedalmond;
}
.grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;

}

.imgtext {
    display: flex;
    align-items: start;
    justify-items: center;
    gap: 19px;

    

}
.bigtext {
    margin: 10px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;


}
.smalltext {
    margin: 30px;
    font-size: 35px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.imgelle {
    margin: 10px;
}
.hrline hr{
    margin-bottom: 6px;
    
}
.smallbookstack {
    position: absolute;
    top: 110%;
    left: 70%;

}
.hrline2 hr {
    margin-bottom: 6px;
}
.littlegirl {
    position: absolute;
    top: 300%;
    left: 80%;
}
.morebookstext {
    text-align: center;
    font-family: prata;
    font-size: 90px;
    text-shadow: 1px 4px 6px grey;
}

.hockeyvideo {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.hockeyvideo video {

    width: 100%;
    
}
.video {
    text-align: center;
}
.textoffcampus {
    font-size: 30px;
    margin-top: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    color: azure;
    text-shadow: 1px 4px 6px grey;
}
.smalltextoffcampus {
    font-size: 20px;
    margin-top: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    color: azure;
    text-shadow: 1px 4px 6px grey;    


}

.button { 
            all: unset;
            font-size: 10px;
            padding: 14px 70px;
            margin-top: 20px;

            background-color: #77675E;
            color: aliceblue;
            text-transform: uppercase;
            position: relative;
            cursor: pointer;
        }
        .button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 10px;
            height: 10px;
            border-top: 2px solid white;
            border-left: 2px solid white;
            transition: 0.5s;
        }
        .button::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 10px;
            height: 10px;
            border-bottom: 2px solid white;
            border-right: 2px solid white;
            transition: 0.5s;
        }
        .button:hover::after , .button:hover::before {
            width: 100%;
            height: 100%;

        }
        .button:hover {
            transition-delay: 0.5s;
            color: #bca496;
            background-color: aliceblue;
            box-shadow: 0 0 10px white,
            0 0 20px white,
            0 0 40px white;
            border-radius: 5px;



        }
