*{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.6),rgba(4, 9, 30, 0.6)), url(images/AnshuStud.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

h1{
    font-family: 'Caveat', cursive;
    font-family: 'Righteous', cursive;
    text-align: center;
    font-size: 50px;
    transform: translateY(400px);
    color: whitesmoke;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 250px;
    transition: 0.5s;
}

nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-style: oblique;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav-links ul li:hover a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-style: oblique;
    text-shadow: 0px 0px 10px rgba(253, 253, 253, 0.952), 0px 0px 10px rgba(253, 253, 253, 0.952);
    font-weight: bold;
    transition: 0.5s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.5s;
    box-shadow: 0px 0px 10px rgba(253, 253, 253, 0.952), 0px 0px 10px rgba(253, 253, 253, 0.952);
    background-color: rgb(253, 253, 253, 0.952);
}

.nav-links ul li:hover::after{
    width: 100%;
}

.down img{
    width: 50px;
    height: 25px;
    transform: translate3d(750px, 450px, 0px);
    transition: 0.5s;
}

.down img:hover{
    transform: translate3d(750px, 460px, 0px);
}

h2{
    text-align: center;
    font-size: 40px;
    font-family: 'Caveat', cursive;
    font-family: 'Righteous', cursive;
}

.photos{
    background: lemonchiffon;
    padding-bottom: 27px;
    padding-top: 25px;
}

.photos img{
    transform: translate3d(13%, 10px, 0px);
    top: 2cm;
    overflow: hidden;
    padding: 15px;
    border-radius: 25px;
    transition: 0.5s;
}

.photos img:hover{
    filter: brightness(130%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.952), 0px 0px 10px rgba(0, 0, 0, 0.952);
}

h3{
    text-align: center;
    font-size: 40px;
    font-family: 'Caveat', cursive;
    font-family: 'Righteous', cursive;
}

.arcane{
    background: lightsteelblue;
    padding-bottom: 27px;
    padding-top: 25px;
}

.arcane img{
    transform: translate3d(13%, 10px, 0px);
    top: 2cm;
    overflow: hidden;
    padding: 15px;
    border-radius: 25px;
    transition: 0.5s;
}

.arcane img:hover{
    filter: brightness(130%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.952), 0px 0px 10px rgba(0, 0, 0, 0.952);
}