body{
    padding-top: 100px;
    background-color: rgb(0, 0, 0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
h1{
    font-family: 'Eurostile', 'Bank Gothic', Arial, sans-serif;
    color: red;
    font-weight: 90;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
}
#downldBtn{
    display: flex;
    align-items: center;
    background-color: rgb(0, 0, 0);
    color: red;
    border: 1px solid red;
    border-radius: 5px;
    height: 50px;
    width: 250px;
    position: relative;
    transition: 0.5s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none; 
}
#downldBtn:hover {
        color: black;
        background-color: red;
    }
.wrapper{
    margin-top: 50px;
}

