

/*Fonts*/

@font-face {
  font-family: 'BrandonGrotesque-Bold';
  src: url('/fonts/BrandonGrotesque-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'BrandonGrotesque-Regular';
  src: url('/fonts/BrandonGrotesque-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

div, label, a, h1, h2, h3, h4, h5, h6 {
    font-family: 'BrandonGrotesque-Bold', sans-serif;
    font-weight: 700;
    padding: 15PX;
}

p {
    font-family: 'BrandonGrotesque-Regular', sans-serif;
    font-weight: normal;
    padding: 15PX;
    font-size: 18px;
}


/*Colors*/


/*Normalise*/

body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}


@media screen and (min-width: 1030px) {
    body {
        margin: 0px;
        padding: 0px;
        width: 100%;
        min-height: 100vh;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.page-title {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 0px;
    align-items: start;

}

@media screen and (min-width: 1030px) {
    .page-title {
        width: 1000px;
        display: flex;
        flex-direction: row;
        justify-content: start;
        gap: 170px;
        align-items: center;

    }
}

.page-title h1 {
    font-size: 28px;
}


@media screen and (min-width: 800px) {
    .page-title h1 {
        font-size: 64px;
    }
}

.text-container {
    margin-top: 10px;
    max-width: 1000px;
    flex: 1;
}

footer {
    padding-top: 50px;
    width: 100%;
    background-color: #351B4F ;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .logo img{
    height: 70px;
}

@media screen and (min-width: 800px) {
    footer .logo img{
        height: 100px;
    }
}

footer .logo{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-bottom: 20px;
}

@media screen and (min-width: 1030px) {
    footer .logo{
        width: 1000px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        padding-bottom: 20px;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 00px;
    padding-bottom: 20px;
}

@media screen and (min-width: 1030px) {
    .footer-links {
        width: 1000px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        gap: 30px;
        padding-bottom: 20px;
    }
}

.footer-links a {
    color: #ffffff;            /* Makes the link text white */
    text-decoration: none;     /* Removes the default browser underline */
}

.footer-links a:hover {
  text-decoration: underline; /* Adds the underline back only on hover */
}
