* {
    margin: 0px;
    padding: 0px;
    scrollbar-width: none; /* For FireFox */
    -ms-overflow-style: none; /* For Internet Explorer */
}

html::-webkit-scrollbar {
    display: none; /* For chrome */
}

main {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

:root {
    --primary: #2d518d;
    --secondary: #142540;
    --light-secondary: #10317f;
    --grey: #4c4c4c;
    --dark: #222222;
    --light-blue: #488ecc;
    --light-light-blue: #53acda;
    --light: #eaeff4;
    --dark-light: #cdcdcd;
}

button.redirect {
    background-color: var(--primary);
    color: var(--light);
    border: 1px solid var(--light);
    border-radius: 6px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
    padding: 6px;
    font-size: 14pt;
    cursor: pointer;
}

button.redirect:hover {
    background-color: var(--light);
    color: var(--primary);
    box-shadow: 0px 0px 10px var(--light-blue);
}

input.details {
    background-color: var(--primary);
    color: var(--light);
    border: 1px solid #00ff00;
    border-radius: 6px;
    padding: 6px;
    width: 400px;
    font-size: 14pt;
    transition:
        width 0.3s ease,
        box-shadow 0.3s ease;
    outline: none;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

input.details:focus {
    width: 450px;
    box-shadow: 0px 0px 10px var(--light-blue);
    outline: none;
}

h1.intro {
    text-align: center;
    margin: 20px;
    width: 100%;
    text-align: center;
    text-shadow: 6px 6px 0px black;
    font-size: 30pt;
    line-height: 40px;
    transition:
        font-size 0.3s ease,
        text-shadow 0.3s ease;
}

h1.intro:hover {
    font-size: 32pt;
    text-shadow: 6px 6px 3px #151515;
}
