@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sedgwick+Ave&display=swap");

html {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    color: #000000;
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-size: 1.1em;
    line-height: 1.3em;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
    font-family: "Rubik", Helvetica, Arial, sans-serif;
    line-height: 1em;
}

a, a:visited {
    color: #222;
}

ul {
   padding: 0px 0px 0px 16px;
}

header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 8px 0px;
    margin: 0px auto;
    width: 940px;
}

.site-id {
    margin: 4px 0px 0px 0px;
}

.site-id img {
    width: 240px;
}

#hamburger-button {
    display: none;
}

.account-button {
    border-radius: 36px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #222;
}

#account-button:hover {
    background-color: #00ffd0;
}

.avatar-container {
    position: relative;
    display: inline-block;
    padding-top: 20px;
}

#avatar-menu.show {
  display: block;
  animation: fadeInFromTop 0.15s ease;
}

#avatar-menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 180px;
  z-index: 10;
  padding: 8px 0px;
}

#avatar-menu a:hover {
    background-color: #00ffd0;
    color: #222;
}

#avatar-menu a, .avatar a:visited {
    text-decoration: none;
    color: #4e4637;
    display: block;
    padding: 8px 12px;
}

#avatar-menu p {
    font-size: 0.8em;
    margin: 8px 12px;
}

#flyout-menu { /*Rest of the flyout-styles are in mobile.css */
    display: none;
}

nav {
    margin: 22px 0px 0px 20px;
    vertical-align: top;
}

nav li {
    display: inline-block;
    list-style: none;
}

nav a, nav a:visited {
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #4e4637;
    padding: 8px 12px;
}

nav a:hover {
    background-color: #00ffd0;
    color: #222;
}

.youtubeframe {
    width: 560px;
    height: 315px;
}

.portrait {
    width: 240px;
    height: 240px;
}

.productthumbnail {
    width: 240px;
}

.columns {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.col1 {
    flex: 1;
    align-items: flex-start;
}

.col2 {
    flex: 2;
    align-items: flex-start;
}

.yellow {
    background-color: #ffd000;
}

.cyan {
    background-color: #00ffd0;
}

.dark {
    background-color: #222222;
}

.row {
    margin: 0px auto;
    padding: 20px 0px;
    width: 940px;
}

footer {
    margin: 0px auto;
    padding: 20px 0px;
    width: 940px;
    color: #ffffff;
}

footer a, footer a:visited {
    color: #fff;
}

.form-error {
    display: block;
    border: 1px solid #222;
    border-radius: 4px;
    background-color: #ff5100;
    padding: 12px;
    color: #fff;
    margin-bottom: 12px;
}

.form-input {
    border: 1px solid #002fff;
    border-radius: 4px;
    padding: 8px 12px 8px 12px;
    font-size: 1.1em;
}

.form-button {
    box-shadow: 4px 4px 0px #222;
    border: none;
    background-color: #0002ff;
    color: #fff;
    border-radius: 4px;
    padding: 8px;
    font-weight: 700;
    padding: 8px 12px 8px 12px;
    font-size: 1.1em;
}

.form-button:active {
    box-shadow: 2px 2px 0px #222;
    transform: translate(2px, 2px);
}
