* {
    box-sizing: border-box;
    font-family: 'Uni Sans';
}

a {
    text-decoration: none;
}

body {
    height: 550vh;
    margin: 0;
    background-color: rgb(0, 0, 0);
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    box-shadow: 3px 5px 10px 0px rgba(255, 187, 0, 0.5);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

nav {
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border: 1px solid black;
    font-size: 20px;
}

nav a {
    color: white;
}

nav ul {
    text-decoration: none;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

nav li {
    padding: 0 25px;
}

.logo {
    position: absolute;
    top: 0;
    left: 50px;
    width: 100px;
    height: 80px;
    /* background-color: aqua; */
    z-index: 1;
}

.logo img {
    position: absolute;
    top: -35px;
    left: -25px;
    width: 200px;
    height: 160px;
    object-fit: cover;
}

main {
    position: relative;
    width: 100%;
    height: 100%;
}

.MainBut {
    color: rgb(255, 190, 0);
}

.info {
    margin: 0 auto;
    margin-top: 50px;
    width: 80%;
    height: 80%;
    /* background-color: aqua; */
    color: white;
    text-align: justify;
    font-size: 20px;
    line-height: 1.5;
}
.chapter {
    margin-bottom: 50px;
}
.infoM {
    text-align: center;
}

.infoM, .infoDate {
    color: yellow;
}
footer {
    width: 100%;
    height: 25vh;
    background-color: black;
    box-shadow: 5px -5px 40px 0px rgba(255, 187, 0, 0.5);
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    position: absolute;
    bottom: 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.infoF{
    margin-top: -25px;
    font-size: 20px;
}

.carpF {
    font-size: 30px;
}




@font-face {
    font-family: 'Uni Sans';
    src: url('fonts/Uni Sans Heavy.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}