/*Resets*/
html{
    scroll-behavior: smooth;
    scrollbar-color: #1d76f5;
    font-family: "Montserrat", sans-serif;
}

*{
    margin: 0;
    padding: 0;
    /* outline: 2px solid rgba(255, 0, 251, 0.233); */
}
*::before,
*::after{
    box-sizing: border-box;
}
body{
    background-image: url(pandora-flower.jpg);
    background-repeat:no-repeat;
}
.headers-container{
    display: flex;
    flex-direction: column;
    flex: 1;
}
.header{
    display: flex;
    flex: 1;
    background-color: #0d0b33;
    color: aliceblue;
    font-size: xx-large;
    font-weight: bold;
    padding: 40px 40px;
    justify-content: center;
}
.sub-header{
    display: flex;
    flex: 1;
    background-color: #4c2f6f;
    padding: 0.5em;
    font-weight: light;
    font-size: large ;
    font-style: italic;
    justify-content: center;
    color: #fff;
}
#header-highlighting{
    background-color: #9c42f5;
    border-radius: 3px;
    margin-left: 10px;
    color: aliceblue;
}


.hero-container{
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-top: 8em;
    margin-bottom: 2em;
    padding: 2em 2em;
    
}

.quote{
    display: flex;
    flex: 1;
    padding: 3em 2em;
    background-color: #52489f;
    border-top-left-radius: 1.2em;
    border-top-right-radius: 1.2em;
    justify-content: center;
    font-style: italic;
    font-weight: 400;
    font-size: xx-large;
    color: #fff;  
    opacity: 0.8;
    
}
.author{
    display: flex;
    padding: 1em;
    background-color: #52489ff8;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    justify-content: center;
    font-style: italic;
    font-weight: 400;
    font-size: x-large; 
    color: #070707;
    box-shadow: 5.9px 11.8px 11.8px hsla(0, 0%, 0%, 0.8);
    opacity: 0.8;
}

.footer-container{
    display: flex;
    flex: 1;
    justify-content: center;
    background-color: #0d0b33;
    color: #fff;
    padding-top: 2em;
    padding-bottom: 2em;
    margin-top: auto;

}
.name{
    font-family: monospace;
    font-style: italic;
    font-size: 1.3em;
    padding: 0px 10px;
    color: #007acc;
}
.footer-container a{
    text-decoration: none; 
}

.button-div{
    margin-bottom: 4em;
    display: flex;
    flex: 1;
    font-size: xx-large;
    font-weight: bold;
    justify-content: center;
}
.button{
    background: #4c2f6f9a;
    border-radius: 12px;
    border: none;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
}
.front{
    display: block;
    padding: 12px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    background: #4c2f6f;
    color: white;
    transform: translateY(-6px);
}
.button:active .front{
    transform: translateY(-2px);
}

