/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/*=========== Nav bar =============*/
.academy{
    width: 100%;
    height: 100vh;
    background: rgba(12, 11, 9, 0.3) !important;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
}
nav .logo{
    width: 75px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-top: 10px;
    margin-left: 40px;
}
nav ul li a{
    text-decoration: none;
    color: #04f0e2e3;
    font-size: 17px;
}
nav ul li :hover{
    text-decoration: none;
    color: #ade613;
}
.content{
    text-align: center;
}
.content h1{
    font-size: 60px;
    color: #fff;
    font-weight: 600;
}
.content h1:hover{
    color: #ade613;
}
.content a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 17px;
    border: 2px solid #fff;
    padding: 12px 23px;
    border-radius: 40px;
}
.content a:hover{
    text-decoration: none;
    color: #ade613;
}
.content h2{
    font-size: 12px;
    color: #fff;
}
.content h2:hover{
    color: #ade613;
}
.video_style{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.academy_style{
    margin-top: 28px;
    font-size: 29px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
