html, body {
    font-family: 'Fira Code';
    background-color: #2a2028;
    height: 100%;
}



body {
    display: flex;
    flex-direction: column;
    margin-bottom: 3em;
}

.content {
    flex: 1 0 auto;
}
.filter{
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        
        background-image: repeating-linear-gradient(0deg, rgb(0 0 0 / 25% ), rgb(0 0 0 / 50% ) 1px, rgb(0 0 0 / 75% ) 3px, rgb(0 0 0 / 50% ) 2px );
        background-repeat:repeat-y;
        z-index: -1;
}

@keyframes scroll {
    0%{background-position:100% 50%}
    100%{background-position:-33% 50%} /* instead of 0% 50% */
}
button{
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	outline: inherit;
    position: relative;
    display: inline-block;
}


.center {
  margin: auto;
  max-width: 50em;
  padding: 10px; 

}

.main-header{
    margin: auto;
    margin-top: 10%;
    max-width: 30%;
    min-width: 40em;
    padding: 20px;
    display: inherit;
}

@media handheld, only screen and (max-width: 1020px) 
{
    .center {
        margin: auto;
        max-width: 100%;
        padding: 10px; 
    }
    .main-header{
        margin: auto;
        margin-top: 10%;
        max-width: 80%;
        min-width: none;
        padding: 20px;
        display: contents;
    }
}

.footertext{
    color: white;
    font-size: 14px;
    text-align: center;
    margin: 2px;
}

.footerlinks{
    margin: auto;
    max-width: 50em;
    padding: 0; 
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footerlink{

}
footer{
    flex-shrink: 0;
    margin-top: 3em;
    width: 100%;
    background-color: #40213a;
}


a, .btn-link {
    color: #e430e1;
    text-decoration: none;
    margin-bottom: 0;
    border-bottom: 1px dotted;
}
a:hover{
    color: rgb(228, 138, 213);
    text-decoration: none;
    border-bottom: 1px solid;
}
a.friendlink {
  color: #000;
  border-bottom: 0px;
}
a.friendlink:hover{
  color: #000;
  text-decoration: none;
  border-bottom: 0px, none;
}
p, li{
    
    color: white;
}
span{
    color:white;
}
.parent{
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.home-links{
    display: grid;
    gap: 1px;
    grid-template-columns: 2fr 1fr 2fr 1fr 2fr;
}

blockquote {
    margin-left: 13px;
    padding-left: 8px;
    border-left: 4px solid #EE82EE;
    border-spacing: 5px;
    font-size: 20px;
}

.blog-card{
    margin-top: 10px;
    padding: 10px;
    border-style: solid;
    background-color: #381f33;
    border-width: 2px;
    border-radius: 4px; 
    border-color: #EE82EE;
}

.break{
    size: 1rem;
    margin: 0rem;
}
.test {
  height: 160px;
  width: 170px;
  -webkit-clip-path: url(#shape);
  clip-path: url(#shape);
}

.gradient-container{
    display: grid;
}
.button-text{
    text-align: center;
    color: #e430e1;
}
.button-text:hover{
    color: violet;
    text-decoration: underline;
}
.card-header-text{
    position: relative;
    color: violet;
    font-weight: bold;
}

.fit-image-animated{
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: transform 0.0s; 
}

.image-animated{
    object-fit: scale-down;
    transition: transform 0.0s; 
}

.fit-image-animated:hover, .image-animated:hover{
    transform: rotate(360deg);  
    transition: transform 1s ease;          
}


@keyframes rotate360 {
    to { transform: rotate(360deg); }           
}
.gradient-text{
  background-image: linear-gradient(to right, violet, pink);
  background-clip: text;
  color: transparent;
}
.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}
.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  } 

hr{
    border-top: 5px solid violet;
    border-radius: 5px;
}
.blog-separator{
    border-top: 1px solid violet;
    border-radius: 5px;
}
.filter-pink{
    filter: invert(88%) sepia(53%) saturate(2634%) hue-rotate(277deg) brightness(98%) contrast(96%);
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1,h2,h3,h4 {
  color: #EE82EE;
}
h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}
.card-background{
    height: 10%;
}
.card-container{
    position: relative;
}
