html {
    height: 100%;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    /* height: 100vh; */
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Nunito, sans-serif;
    letter-spacing: 0.01em;
    --bg-opacity: 1;
    background-color: #f2efe4;
    background-color: rgba(242,239,228,var(--bg-opacity));
    font-size: 2em;
    line-height: 1.4;
}

body.dark-mode {
    background-color: #1f1e1d;
    color: #f2efe4;
}

.dark-mode .social a,
.dark-mode .email,
.dark-mode a {
    color: #f2efe4;
}

/* .content{
    margin-top: 15%;
   
} */
.container{
     height: 100%;
     margin-top: 155px;
     flex: 1;
}

.theme-toggle{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
}

.toggle-switch{
    width: 40px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.toggle-checkbox{
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label{
    border: 1px solid currentColor;
    background-color: #f2efe4;
    cursor: pointer;
    border-radius: 2rem;
    width: 40px;
    height: 20px;
    margin-bottom: 0;
    padding: 0;
    position: absolute;
    inset: 0%;
}

.toggle-label:before{
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: currentColor;
    transition: 0s;
    border-radius: 50%;
}

.toggle-label.has-transition:before{
    transition: 0.2s;
}

.toggle-checkbox:checked + .toggle-label:before{
    transform: translateX(20px);
}

.dark-mode .toggle-label{
    background-color: #1f1e1d;
}

.content{
    font-size: 20px;
    /* background-color: green; */
}

.header-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.header-row h2{
    margin: 0;
}

h2{
    
    font-weight: 700;
}

p {
    margin-top: 5%;
    margin-bottom: 5%;
}

.astutebridge-link {
text-decoration: underline;
    color: inherit;
}

.astutebridge-link:visited {
    color: inherit;
}

span {
    font-size: 1.2em;
}
.techie{
    width: 26px;
}

.social {
    margin-bottom: 10px;
    margin-top: 10px;
}

i {
    margin-left: 5px;
}

.social a {
    font-size: 38px;
    padding-right: 2%;
    color: black;
    text-decoration: none;
}

.email{
    text-decoration:underline;
    color: inherit;
}
.email:hover {
    text-decoration:none;
}
.email:visited {
    color: inherit;
}
.footer-note {
    margin: 0 0 20px;
    margin-top: auto;
    font-size: 12px;
    text-align: center;
    opacity: 0.75;
}
.wave {
    width: 40px;
    animation-name: wave-animation;  /* Refers to the name of your @keyframes element below */
    animation-duration: 2.5s;        /* Change to speed up or slow down */
    animation-iteration-count: infinite;  /* Never stop waving :) */
    transform-origin: 70% 70%;       /* Pivot around the bottom-left palm */
    display: inline-block;
}


@keyframes wave-animation {
    0% { transform: rotate( 0.0deg) }
   10% { transform: rotate(14.0deg) }  /* The following five values can be played with to make the waving more or less extreme */
   20% { transform: rotate(-8.0deg) }
   30% { transform: rotate(14.0deg) }
   40% { transform: rotate(-4.0deg) }
   50% { transform: rotate(10.0deg) }
   60% { transform: rotate( 0.0deg) }  /* Reset for the last half to pause */
  100% { transform: rotate( 0.0deg) }
}
/* footer, span{
    font-size: 12px;
} */
