﻿/* ------------------------------- */
/* Root*/
/* ------------------------------- */
:root {
    --clr-dark: 213 78% 18%;
    --clr-light: 213 13% 83%;
    --clr-white: 0 0% 100%;
    /* ------------------------------- */
    /* font-sizes*/
    /* ------------------------------- */
    --fs-900: 9.375rem;
    --fs-800: 6.25rem;
    --fs-700: 3.5rem;
    --fs-600: 2rem;
    --fs-500: 1.75rem;
    --fs-400: 1.125rem;
    --fs-300: 1rem;
    --fs-200: 0.875rem;
    /* font-families */
    --ff-sans-serif: "sans-serif", serif;
    --ff-serif: "Bellefair", serif;
    --ff-sans-cond: "Barlow Condensed", sans-serif;
    --ff-sans-normal: "Barlow", sans-serif;
}

/* ------------------------------- */
/* Reset*/
/* ------------------------------- */

/* https://piccalil.li/blog/a-modern-css-reset/ */

/* Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*Reset margins*/
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
p {
    font-weight: 400;
}

/*set up the body*/

body {
    font-family: var(--ff-sans-normal);
    font-size: var(--fs-300);
    line-height: 1.5;
    min-height: 100vh;
}
/* make images easier to work with*/
img,
picture {
    max-width: 100%;
    display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
    font: inherit;
}
.btn-slides {   
    font-size: 80%;
    background-color: #000080 !important;
}
/* remove animations for people who 've turned them off */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ------------------------------- */
/* Utlility Classes*/
/* ------------------------------- */
.flex {
    display: flex;
    gap: var(--gap, 1rem);
}

.grid {
    display: grid;
    gap: var(--gap, 1rem);
}

.container {
    padding-inline: 2em;
    margin-inline: auto;
    max-width: 80rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap; /* added line*/
    border: 0;
}
.content{
    padding:20px;
}

/* colors */
.bg-dark {background-color: #0A2A51;}

.bg-accent {background-color: #c0c7d1;}

.bg-white {background-color: #ffffff;}

.text-dark {color: #0a2a51;}

.text-light {color: #e7f1fc;}

.text-white {color: #ffffff;}

.text-accent {color: #d64459;}

/* typography */
.ff-serif {font-family: var(--ff-serif);}

.ff-sans-cond {font-family: var(--ff-sans-cond);}

.ff-sans-normal {font-family: var(--ff-sans-normal);}

.letter-spacing-1 {letter-spacing: 4.75px;}

.letter-spacing-2 {letter-spacing: 2.7px;}

.letter-spacing-3 {letter-spacing: 2.35px;}

.uppercase {
    text-transform: uppercase;
}

.fs-900 {font-size: var(--fs-900);}
.fs-800 {font-size: var(--fs-800);}
.fs-700 {font-size: var(--fs-700);}
.fs-600 {font-size: var(--fs-600);}
.fs-500 {font-size: var(--fs-500);}
.fs-400 {font-size: var(--fs-400);}
.fs-300 {font-size: var(--fs-300);}
.fs-200 {font-size: var(--fs-200);}

.fs-900,
.fs-800,
.fs-700,
.fs-600 {
    line-height: 1.1;
}
.Header {
    padding-top: 1rem;
    font-weight: 200;
}
.text{
    font-weight:bold;
}
.validation {
    color:red;
    font-weight:bold;
}
.login {
    margin: 0 auto;
    width: 400px;
    border: 1px solid black;
    clear: both;
}
.bio{
    max-width: 100%;
    height: auto;
}
.bio-name{
    color:red;
    font-weight:200;
    font-family:'Arial Rounded MT'
}
.bio-company{
    color:red;
    font-style:italic;
}
.polaroid {
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
}
.footer {
    padding: 10px;
    color: white;
    text-align: center;
}
.fa {
    padding: 20px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}
    .fa:hover {
        opacity: 0.7;
    }

.fa-facebook {
    background: #3B5998;
    color: white;
}
.fa-twitter {
    background: #55ACEE;
    color: white;
}
.fa-linkedin {
    background: #007bb5;
    color: white;
}

