@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');
@import url('animate.css');

:root {
    --primary-color: rgb(55, 81, 121);
    --accent-color: #FF8921;
    --link-color: rgb(255, 187, 84);
    --glass-bg: rgba(255, 255, 255, 0.432);
}

/* Ensure predictable sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-image: url(../../images/background-24.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-y: scroll;
    width: 100%;
    margin: 0;
}

.blur {
    margin: 0;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: var(--glass-bg);
    background-position: center;
    background-size: cover;
}

h1,h2,h3,h4,h5,h6,p {
    color: var(--primary-color);
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5em;
}

h2 {
    font-size: 3.2em;
}

h3 {
    font-size: 2.9em;
}

h4 {
    font-size: 2.5em;
}

h5 {
    font-size: 2.0em;
}

h6 {
    font-size: 1.5em;
}

p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
}

a {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--accent-color);
}

/* Make SVG icons inherit text color so they respond to :hover color changes */
svg {
    fill: currentColor;
}

.button-one {
    color: var(--primary-color);
    font-size: 1.1em;
    border: solid 1px var(--primary-color);
    border-radius:10px;
    padding: 0.5em 0.4em;
}

.button-one:hover {
    border: solid 1px var(--accent-color);
    background: var(--accent-color);
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.button {
    height: 3em;
    line-height: 3em;
    font-size: 1.1em;
    font-family: 'Manrope', sans-serif;
    padding: 0 1.2em;
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border: solid 1px var(--primary-color);
    border-radius: 6px;
    -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    display: inline-block;
    margin: 0.6rem;
  }
  
  .button:hover {
    border: solid 1px var(--accent-color);
    color:  var(--accent-color);
  }
  
  .button svg {
    display: inline;
    /* inherit the button color so it updates on hover */
    fill: currentColor;
  }
  
  .button:hover svg {
    transition: fill 0.2s ease-in-out, color 0.2s ease-in-out;
    /* no explicit fill needed because svg uses currentColor */
}

.wrapper {
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.main-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-height: 95vh;
}

.main-body {
    display: flex;
    flex-direction: column;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    min-height: 95vh;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-height: 10em;
    background-color: var(--primary-color);
    color: white;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer p,
.footer a{
    color: white;
}

.footer p,
.footer a{
    font-size: 0.9em;
}

@media screen and (max-width: 780px) {

    body {
        background-image: url(../../images/tab-background-24.png);
    }

}