* {
    padding: 0;
    margin: 0;
}

.bgd {
    height: 100vh;
    width: 100vw;
    z-index: -10;
    position: fixed;
    background-size: cover;
    background-image: linear-gradient(rgba(9, 4, 30, 0.7), rgba(9, 4, 30, 0.7)), url(Media/SchoolPhotos/Building.jpeg);
}

body {

    overflow-x: hidden;
}

.nav {
    background-color: rgb(112, 204, 247);
    color: rgb(0, 0, 0);
    display: flex;
    padding: 5px 8px;
    align-items: center;
    justify-content: space-between;

}

.nav ul {
    flex: 1;
}

li {
    vertical-align: middle;
    font-size: 3vh;
    position: relative;
    display: inline-block;
    margin: 0vh 3vw;
    box-sizing: border-box;
    color: white;
    text-decoration: none;

}

a {
    text-decoration: none;
    color: white;

}

a::after {
    content: '';
    display: block;
    background-color: white;
    height: 3px;
    width: 0px;
    left: 0px;
    bottom: -10px;
    transition: 0.8s;
    margin: auto;
}

a:hover {
    color: black;
}

a:hover::after {
    width: 100%;
}

.logo {
    width: 6vw;
    border-radius: 10%;
}

h1 {
    display: inline-block;
    margin: 10px 15px;
    color: rgb(248, 121, 216);
}

/* pre{
    font-size: 18px;
    display: block;
    margin: 10px 15px;
    color: white;
} */

pre {
    font-size: 18px;
    display: block;
    margin-left: 33px;
    color: white;
    margin-top: 21px;
}

.copy {
    display: block;
    font-size: 2vw;
    color: chartreuse;
    margin: auto;
}