@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'VT323', monospace;
    background-color: rgb(255, 255, 255);
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
input, button, textarea
    {
    border: none;
    outline: none;
}
/*NAV*/

nav{
    display:flex;
    justify-content: flex-start;
    align-items: initial;
    left: 0;
    top: 0;
    width: 100%
    z-index: 1;
}
nav ul{ 
    display: flex;
}
nav ul li a{
    height: 40px;
    line height: 43px;
    margin: 3px;
    padding: 0 22px;
    display: center;
    font-size: 3.0rem;
    text-transform: uppercase;
    font-weight: 2500;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: 0.6s ease-in-out;
    color: #9D33FF;
}
nav ul li a:hover{
    background-color:darkgrey;
    color:rgb(255, 240, 240);
    box-shadow: 5px 10px 30px rgba(255, 5, 5, 0);
}
.active{
    background-color:darkgrey;
    color:rgb(255, 240, 240);
    box-shadow: 5px 10px 30px rgba(255, 5, 5, 0);
}
.menu{
    background-color: rgba(0, 0, 0, 0.363);
    height: 48px;
    line height: 43px;
    margin: 3px;
    padding: 0 22px;
    display: center;
    border-radius: 5px;
    position: center;
}
.main{
    width: 100%;
    height: 713px;
    position: relative;
    background repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/logo.png);
}
.main-heading{
    width: 600px;
    position: absolute;
    left: 25%;
    top: 55%;
    transform: translate(-14%,-47%);
    color: aliceblue;
    background-color: rgba(0, 0, 0, 0.363);
    height: 430px;
    font-size: 1.5rem;
    line height: 43px;
    margin: 3px;
    padding: 0 22px;
    display: center;
    border-radius: 5px;
    position: center;
}
.main-btn{    
    height: 40px;
    line height: 43px;
    margin: 3px;
    padding: 0 22px;
    display: center;
    font-size: 6.0rem;
    text-transform: uppercase;
    font-weight: 1000;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: 0.6s ease-in-out;
    color: #9D33FF;
    background-color: #2d322dFF
}
.main-btn:hover{
    background-color:darkgrey;
    color:rgb(255, 240, 240);
    box-shadow: 5px 10px 30px rgba(255, 5, 5, 0);
}
.second{
    width: 600px;
    position: absolute;
    left: 25%;
    top: 55%;
    transform: translate(-14%,-47%);
    color: aliceblue;
    background-color: rgba(0, 0, 0, 0.363);
    height: 430px;
    font-size: 1.5rem;
    line height: 43px;
    margin: 3px;
    padding: 0 22px;
    display: center;
    border-radius: 5px;
    position: center;
}