html, body {
    height: 95%;
}
body {
    background-image: linear-gradient(to bottom, rgba(0,0,0, 0.52), rgba(0, 0, 0, 0.73)), url("images/background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo-img {
    width: 400px;
}
h1 {
    font-size: 60px;
    margin-bottom: 0;
}
.btn {
    outline: none;
    border: 2px solid #fff;
    padding: 30px;
    background: none;
    color: #fff;
    display: flex;
    height: 10px;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    transition: .3s;
}
.btn:hover {
    background: #fff;
    color: #000;
}
.text-green {
    color: #00da00;
}
.text-red {
    color: #da0000;
}
.btns {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
a {
    text-decoration: none;
    color: #565656;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #565656;
    text-align: center;
    opacity: .65;
}
span2{
    color: rgb(255, 234, 0)
    }
