*{
    padding: 0px;
    margin: 0px;
}
.topblock {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
}
.topbanner {
    display: block;
    width: 500px;
    height: auto;
}
.topbanner h1 {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}
.txtinfo {
    text-align: center;
}
.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}
.buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: 0.2s;
}
.buttons a:hover {
    transform: scale(1.1);
    background: #E86E4D;
    transition: 0.2s;
}