@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #212529;
}

.navbar {
    background: #dc0032;
    color: #fff;
    align-items: center;
    display: flex;
    justify-content: left;
    padding: 0;
    width: 100%;
    gap: 25px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo img,
.navbar-logo h1 {
    font-size: 30px;
    font-weight: 600;
    padding: 0;
}

.navbar-text {
    font-weight: 400;
}

.align-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
   
    margin: 15px;
}

.site-body {
    width: 60%;
    display: block;
    text-align: center;
    margin: 15px;
    
}

.site-body p {
    font-size: 16px;
    word-break: break-word;
}

.fin {
    position: fixed;
    bottom: 0;
}


.wh {
    padding: 25px;
    background: #fff;
    color: #212529;
    justify-content: space-between;
}

.bot {
    padding: 25px;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    .navbar-text {
        display: none;
    }
}
