:root {
    --half-viewport-height: calc(-50vh / 2);
}  


html {
    overflow: hidden;

    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-style: normal;

    
}

body {
    background-color: rgb(52, 5, 5);
    display: flex;

    justify-content: center;
}

h1 {
    font-size: 50px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

h3 {
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}

p {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.smallblocks {
    width: 30%;
    height: calc(90% + 12px);

    margin-top: 3%;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;

    overflow-y: auto;
}

.block {
    background-color: #7e1515;
    width: 40%;
    height: 90%;
    color: rgb(255, 240, 240);

    margin-left: 3%;
    margin-top: 3%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    animation: shadow-animation 3s infinite;
    animation-direction: alternate;

    border-color: #d63200;
    border-width: 6px;
    border-style: solid;
}

.blockSm {
    margin-bottom: 3%;
    background-color: #7e1515;
    width: 80%;
    height: 30%;
    color: rgb(255, 240, 240);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    border-color: #d63200;
    border-width: 6px;
    border-style: solid;

    flex: 0 0 auto;

    position: relative;
}

.topper {
    width: 100%;
    height: 25px;
    background-color: #d63200;
}

.toppera {
    width: 100%;
    height: 10px;
    background-color: #aa2800;
}

.text {
    position: relative;
    width: 97%;
    height: 100%;
    padding: 1%;
}

.sharp {
    position: absolute;
    right:var(--half-viewport-height);


    opacity: 0.5;

    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);

    width: auto;
    height: 100%;
}

.flair {
    user-select: none;

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: auto;

    filter: brightness(0) saturate(100%) invert(16%) sepia(71%) saturate(4180%) hue-rotate(20deg) brightness(95%) contrast(104%);
}


.flair2 {
    user-select: none;

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: auto;

    filter: brightness(0) saturate(100%) invert(23%) sepia(72%) saturate(5127%) hue-rotate(15deg) brightness(94%) contrast(101%);

}

.flair5 {
    user-select: none;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: auto;

    filter: brightness(0) saturate(100%) invert(16%) sepia(71%) saturate(4180%) hue-rotate(20deg) brightness(95%) contrast(104%);
}


.flair6 {
    user-select: none;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: auto;

    filter: brightness(0) saturate(100%) invert(23%) sepia(72%) saturate(5127%) hue-rotate(15deg) brightness(94%) contrast(101%);

}

::selection {
    color: aliceblue;
    background: #d63200;
  }
  


@keyframes shadow-animation {
    from {
        box-shadow: 0px 0px 44px -6px #E57575;
    }
    to {
        box-shadow: 0px 0px 44px 0px #E57575;
    }
  }
  
img {
    pointer-events: none;
}