/*
Theme Name:     TT Acquisition
Theme URI:      https://example.com/tt-acquisition
Description:    A child theme for the Twenty Twenty-Five theme.
Author:         Trading Technologies
Author URI:     https://example.com
Template:       twentytwentyfive
Version:        1.0.0
License:        GNU General Public License v2 or later
License URI:    http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    tt-acquisition
*/

/*
 * Custom Fonts
 *
 * This section includes the @font-face rules for all the web fonts.
 * The font files are expected to be in a 'fonts' folder within the child theme.
 */

/* Open Sans Condensed Light */
@font-face {
  font-family: 'Open Sans Condensed';
  src: url('fonts/OpenSans-CondLight-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

/* Open Sans Condensed Regular */
@font-face {
  font-family: 'Open Sans Condensed';
  src: url('fonts/OpenSans-CondRegular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* Open Sans Condensed Bold */
@font-face {
  font-family: 'Open Sans Condensed';
  src: url('fonts/OpenSans-CondBold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* Open Sans Light */
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

/* Open Sans Light Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-LightItalic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}

/* Open Sans Regular (assuming this is the default font, so using regular weight) */
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* Open Sans Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}

/* Open Sans Bold */
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* Open Sans Bold Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-BoldItalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}

/* Open Sans ExtraBold */
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-ExtraBold-webfont.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}

/* Open Sans ExtraBold Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-ExtraBoldItalic-webfont.woff') format('woff');
  font-weight: 800;
  font-style: italic;
}



body {
    font-family: 'Open Sans', sans-serif;
}

.wp-site-blocks {
    display: flex;
    flex-direction: column;
    height:100vh;
}

:where(.wp-site-blocks) > * {
    margin-block-start: 0;
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: .02em;
    font-weight: 400;
    text-transform: uppercase;
}

:root :where(.is-layout-constrained) > p {
    margin-block-start:.5rem;
}

a {
    color: #51dadc;
    text-decoration: none
}

footer.wp-block-template-part a {
    color: #fff;
}

a:hover {
    color: #51dadc;
    text-decoration: underline
}


.wp-element-button {
    font-family: "Open Sans Condensed", "Open Sans", sans-serif;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: solid 1px #51dadc;
    border-radius: 0;
    background-color: transparent;
    transition: background-color .5s;
    padding: 14px 60px;
    font-size: 1.25rem;
    line-height: 1.5;

}

.wp-element-button:hover {
    color: #000;
    border: solid 1px #51dadc;
    background-color: #51dadc;
    text-decoration: none
}

sup {
    font-size: .5em;
}