:root {
	--color: #9c302c;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #9c302c3f;
    overflow-y: hidden;
}

a {
    text-decoration: none;
}

h1 {
    display: flex;
    font-size: 10em;
    justify-content: center;
    color: #fff;
    text-shadow: 7px 7px 13px rgba(0,0,0,0.98);
    transition: all 1s;
}

h1:hover {
    text-shadow: 12px 12px 13px rgba(0,0,0,0.98);
}

hr  {
    height: 20px;
    background: linear-gradient(0deg, rgba(170,170,170,1) 0%, rgba(255,255,255,1) 32%, rgba(255,255,255,1) 100%);
}

footer {
    position: fixed;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #9c302c3f;
    color: rgb(255, 255, 255);
    align-items: center;
    /* width: 100vw; */
    padding: 20px;
    box-shadow: black 0 0 8px;
   
   }