* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar{
    background-color: #8f018f;
}
.navbar-nav{
    margin-left: auto;
}
.navbar-nav a{
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: larger;
    transition: 0.5s;
    margin: 0rem 1rem;
}
.navbar-nav a:hover{
    transform: scale(1);
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.3rem 0.3rem;
    color: #8f018f;
    
}
.image img{
    width: 100%;
    height: 45vh;
}
.lecture h1{
    text-align: center;
}
.lecture h2{
    text-align: center;
}
.lecture p{
    text-align: center;
}


input {
    
    height: 3rem;
    width: 100%;
    text-align: center;
    border: 0.1rem gray solid;
    border-radius: 0.7rem;
}
textarea{
    height: 10rem;
    width: 100%;
    padding: 1rem;
    border: 0.1rem gray solid;
    border-radius: 0.7rem;
}
body h1 {
    font-weight: bold;
    font-size: 4rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #f32170, #ff6b08,
            #cf23cf, #eedd44);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}


.submit-button button {
    padding: 1rem 2rem;
    border: none;
    background: linear-gradient(to right, #f32170, #ff9046);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 1rem;
    transition: 0.5s;
}

.submit-button button:hover {
    transform: scale(1.1);
    box-shadow: 0.5rem 0.3rem 0.8rem gray;
}

.footer{
    background-color: #070e2c;
    font-weight: lighter;
}
.first-footer{
    color: white;
    background-color: #070e2c;
}
.last-footer{
    color: white;
    background-color: black;

}
.pp{
    text-align: right;
}
