body{
    background: radial-gradient(circle, rgb(0, 0, 0), rgb(255, 68, 0));
}
header{
    display: flex;
    justify-content: center;
}
h2{
    font-size: 60px;
color: white;
text-shadow: 
    0 0 5px rgb(255, 55, 0),
    0 0 10px rgb(255, 255, 255),
    0 0 20px rgba(255, 51, 0, 0.6);
}
h3{
    display: flex;
    justify-content: center;
    font-size: 30px;
    color: rgb(255, 255, 255);
text-shadow: 
    0 0 5px rgb(255, 55, 0),
    0 0 10px rgb(255, 255, 255),
    0 0 20px rgba(255, 51, 0, 0.6);
    margin-bottom: 190px;
    margin-top: 60px;
}
nav{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
a{
    font-size: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
        color: rgb(255, 255, 255);
text-shadow: 
    0 0 5px rgb(255, 0, 0),
    0 0 10px rgb(255, 0, 0),
    0 0 20px rgb(255, 0, 0);
}
A:hover{
    color: rgb(0, 0, 0);
text-shadow: 
    0 0 5px rgb(255, 255, 255),
    0 0 10px rgb(255, 255, 255),
    0 0 20px rgba(255, 255, 255, 0.6);
}