body {
    margin: 0;
    height: 100vh;
    display: flex;
    background: linear-gradient(135deg, rgba(42, 140, 196, 0.61), rgb(28, 28, 114));
    justify-content: center;
    align-items: center;
    text-align: center;
    color: White;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.hero{
    animation: fadeIn 1s ease-in-out ;
    padding: 90px 70px;
    margin-bottom: 20px;
    border: 3px solid rgba(69, 35, 193, 0.626);
    border-radius: 75px;
    background: linear-gradient(135deg, rgba(3, 2, 14, 0.767), rgba(26, 187, 199, 0.349));
    

}

h1 {

    font-size: 50px;
    margin-bottom: 10px;
    text-decoration: underline;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

p {
     margin-bottom: 20px;    
     font-size: 16px;
}

button {
    padding: 12px 33px;
    border-radius: 33px;
    border: none;
    color:blue;
    background: #ddd;
    cursor: pointer;
}

button:hover{
    background: #ccc;
    color:black
    
}

footer{
    font-size: 13px;
    color: rgba(218, 215, 250, 0.952);
    padding: 5px;
    margin: 10px;
    background: rgba(0, 183, 255, 0.192);
    border-radius: 33px;
    text-decoration: underline;

}

.tag {
    font-size: 13px;
    color: rgba(218, 215, 250, 0.952);
    padding: 5px;
    margin: 10px;
    background: rgba(23, 68, 88, 0.267);
    border-radius: 33px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
