*{
    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%; 
}
.heading{
    margin-left: 10vw;
    font-size: 6vw;
    margin-bottom: 10vh;
    color: cadetblue;
}
.actparent{
    color: gold;
    margin-left: 10vw;
    margin-right: 10vw;
}
.actparent div h2{
    font-size: 2.5vw;
}
.actparent img{
    display: inline-block;
    border: 2px solid gold;
    border-radius: 5vh;
    width: 20vw;
    height: 20vw;
}

.act1, .act3, .act5, .act7, .act9{
    clear: right;
}
.act1, .act3, .act5, .act7, .act9, .act2, .act4, .act6, .act8, .act10{
    margin: 12vh 0px;
}
@media (max-width:730px){
    .heading{
        font-size: 8;
    }
    .actparent div h2{
        font-size: 3vw;
    }
}
.copy{
    display: block;
    font-size: 2vw;
    color: chartreuse;
    margin: auto;
}