/* Variables */

:root {
    --font-title-size: 50px;
    --font-title-textbox-size: 30px;
    --font-button-size: 20px;
    --font-default-size: 16px;
}

/* Base CSS Properties */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

body {
    background-color: darkred;
    font-family: SuezOne;
    font-size: var(--font-default-size);
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: rgb(255, 236, 59);
    overflow-x: hidden;
}

.noScroll {
    overflow: hidden;
}

@font-face {
	font-family: SuezOne;
	src: url("../Font_Suez_One/SuezOne-Regular.ttf");
    font-display: swap;
}

/* Buttons and Anchors */

a {
    cursor: pointer;
}

button {
    width: 200px;
    padding: 4px 6px;

    display: flex;
    justify-content: center;
    align-items: center;
    
    cursor: pointer;
    font-family: SuezOne;
    font-size: var(--font-button-size);
    color: white;
    background-color: black;
    border-radius: 8px;
    border: 2px rgb(255, 236, 59) solid;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

button:hover:enabled {
    border-color: white;
    background-color: rgb(50, 50, 50);
}

button:disabled {
    opacity: .5;
    cursor: unset;
}

.buttonSelected {
    border-color: white;
    background-color: rgb(72, 54, 211) !important;
}

button > arrow {
    font-size: 15px;
}

input {
    width: 100%;
    padding: 6px 6px;

    display: flex;
    justify-content: center;
    align-items: center;
    
    /*font-family: SuezOne;
    font-size: 16px;*/
    color: black;
    background-color: white;
    border-radius: 8px;
    border: 2px rgb(72, 54, 211) solid;
}

textarea {
    resize: none;
    width: 100%;
    padding: 6px 6px;

    display: flex;
    justify-content: center;
    align-items: center;
    
    font-family: sans-serif;
    /*font-family: SuezOne;
    font-size: 16px;*/
    color: black;
    background-color: white;
    border-radius: 8px;
    border: 2px rgb(72, 54, 211) solid;
}

.Section {
    padding: 3.5vw 0vw;
    height: 41.05vw;

    display: flex;
    justify-content: space-around;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

iframe {
    margin-top: -34.8px;
    z-index: 1;
}

.iframeWarning {
    display: block;
    text-decoration: none;
    border: yellow solid;
    background-color: rgb(72, 54, 211);
    color: white;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    max-height: 30px;
    border-radius: 8px;
}

.iframeWarning > img {
    position: relative;
    top: 2px;
    z-index: 0;
}

/* Mobile Modifications */

@media (hover: hover) {
    .noScroll {
        padding-right: 15px;
    }
}

@media screen and (max-width: 975px) {
    .Section {
        height: auto;
    }
}

@media screen and (max-width: 750px) {
    :root {
        --font-title-size: 40px;
        --font-title-textbox-size: 28px;
        --font-button-size: 18px;
        --font-default-size: 14px;
    }
    html {
        scroll-padding-top: 45px;
    }
    .Section {
        flex-direction: column;
        padding: 25px 0px;
    }
    iframe {
        display: none;
    }
}