/* these are the two accent colors! everything else is just black and white. */

:root {
    --accentcolor: #hotpink;
    --darkercolor: #BB0707;
}

/* this is the image for the huge image box at the top! it'll be sized up if it's too small, so keep that in mind!  */
.numberone {
    background-image: url("toasters.gif");
}

.numbertwo {
    background-image: url("wellywood.gif");
}


/* here's the rest vv */

* {
    box-sizing: border-box;
    transition: 0.5s;
}

body {
    margin: 0;
    background-color: white;
    padding: 0;
    font-family: 'Poppins', 'Helvetica', sans-serif;
}

::selection {
    background-color: var(--accentcolor);
}

h1 {
    margin-top: 100px;
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
    font-size: 30pt;
}

h2 {
    background-color: var(--accentcolor);
    width: fit-content;
}

h3 {
    text-align: center;
}

button {
    padding: 14px 16px;
    border: 2px solid black;
    font-size: 13pt;
    background-color: white;
    font-weight: bold;
    box-shadow: 5px 5px var(--accentcolor);
    cursor:pointer;
    transition: 0.1s;
}

button:active {
    box-shadow: none;
}

u {
    text-decoration: wavy underline 1px var(--accentcolor);
}

a {
    color: var(--darkercolor);
    font-weight: bold;
}

a:hover,
a:focus {
    color: var(--accentcolor);
    background-color:var(--darkercolor)
}


.container {
  position: relative;
  padding-top: 56.26%;
 }
 
 .video {
  position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
 }

/* this is the arrow in the corner that takes you to the top of the page. */
.up {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: fixed;
    bottom: 5px;
    right: 5px;
    background-color: var(--darkercolor);
    opacity: 0.7;
    text-align: center;
    color: white;
    font-size: 35px;
}

.up a {
    text-decoration: none;
    color: white;
}

.up:hover {
    opacity: 1;
}

/* end of "back to top" arrow */

/* this is the bar at the top of the page */

.topnav {
    background-color: black;
    padding-right: 45px;
    padding-left: 15px;
    width: 100%;
    height: 75px;
    color: white;
    font-size: 16pt;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    padding: 15px;
    font-weight: bold;
    font-size: 22pt;
}

.topnav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: fit-content;
}

.topnav li {
    float: left;
}

.topnav a {
    display: inline-block;
    font-weight: 400;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover,
.dropdown:hover .dropbtn {
    background-color: var(--darkercolor);
    color: white;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    width: 175px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: var(--accentcolor);
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* that's all the top navbar */


/* this is the big huge image box styling */
.numberone {
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 100pt;
    font-weight: 900;
    text-align: center;
    color: hotpink;
    line-height: 1;
}



/* this is another big huge image box styling */
.numbertwo {
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 100pt;
    font-weight: 900;
    text-align: center;
    color: hotpink;
    line-height: 1;
}

/* this is the flexbox for the main sections */

.bigflex {
    width: 100%;
    min-height: 70vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    line-height: 1;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 60px;
    margin: auto;
}

/* this is the text div for the section */

.text {
    width: 45%;
    line-height: 1.5;
}

/* and this is the image div for the section */

.pic {
    width: 450px;
    height: 450px;
    border-radius: 100%;
    border: 10px solid var(--accentcolor);
    overflow: hidden;
    text-align: center;
}

.pic img {
    height: 100%;
    /*change this to width:100% if your image is taller than it is wide.*/
}

.loose {
    max-width: 60%;
    margin: auto;
    text-align: center;
}

/* this is the section with the colored background and the little info cards. */

.cards {
    align-items: center;
    background-color: var(--accentcolor);
    color: var(--darkercolor);
}

/* "cards" is the container and "card" is for the actual card(s) */

.card {
    width: 20%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 1px 5px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    min-width: 200px;
    text-align: center;
    border-radius: 20px;
    padding: 10px;
    max-height: 500px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--darkercolor) var(--accentcolor)
}

.card:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 15px;
    scale: 1.1;
}

.card p {
    margin: auto;
    margin-top: 10px;
    line-height: 1.1;
}

.card img {
    border-radius: 100%;
    height: 150px;
    border: 1px solid;
}

/* aaand here's the footer */

.foot {
    background-color: black;
    padding: 5px;
    width: 100%;
    height: 85px;
    color: white;
    font-size: 10pt;
    text-align: center;
}

/* this is styling for mobile */

@media only screen and (max-width: 810px) {
.topnav {font-size:14pt;
padding-left:5px;
padding-right:5px;
height:auto;}

.text {width:90%;}

.numberone {font-size:60px;}

.foot {height:auto;}
}