/*
Theme Name: MBGH 2025
Author: ROC Group - Ian Israel
Version: 1.0.0
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');


html {
    --background-gradient: linear-gradient(135deg, rgba(51,116,184,1) 0%, rgba(90,149,204,1) 50%, rgba(123,169,217,1) 100%);
    --primary: #0075BC;
    --primary-font: "PT Sans", sans-serif;
}

body {
    margin: 0;
}

#page-container {
    background: var(--background-gradient);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    padding: 2rem;
}

.logo {
    width: 300px;
    max-width: 100%;
}

a,
a button {
    text-align: center;
    color: var(--primary);
    font-family: var(--primary-font);
    text-decoration: none;
    transition: .3s;
}

a button {
    padding: 12px 24px;
    background-color: white;
    border: none;
    cursor: pointer;
    margin: 0 auto 1rem auto; 
    width: 100%;
    display: block;
}

a:hover,
a button:hover {
    opacity: .8;
}

h2,
h3 {
    color: white;
    font-weight: 700;
    font-family: var(--primary-font);
}