:root{
--salmon: #FF7E70; 
--bg: #0a0a0a;
--shadow: 0 2px 2px rgb(0 0 0/0.5);
}

body{
    font-size: 1.2rem;
   font-family: 'Work Sans', sans-serif;
   min-height: 2000px;
}
.hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/IMG_3304.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness();
}
.hero {
    position: relative;
    min-height: 100vh;
}
.hero h1, .hero h4, .hero p {
    text-shadow: var(--shadow);

}
.hero h1 {
    font-family: 'Sacramento';
    font-size: 3rem;
}

.hero h4 {
    font-size: 1.6rem;
}

.hero p {
    font-size: 1.4rem;
}

.hero a {
    color: var(--salmon);
    background-color: white;
    box-shadow: var(--shadow);
}

.hero a:hover {
    background-color: var(--salmon);
    color: white
}

.mynavbar {
    background-color: rgba(255, 255, 255, 0.3) !important; 
    backdrop-filter: blur(4px);
}

.mynavbar .offcanvas {
    height: 100vh;
}

.mynavbar .navbar-brand, 
.mynavbar .offcanvas-title {
    font-family: 'Sacramento', cursive;
    font-size: 3.2rem;
    font-weight: bold;
}

.mynavbar .nav-link {
    text-transform: uppercase;
}

.home {
    background-image: url(img/Strand.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    margin-top: -6.5rem;
    padding-top: 15rem;
    padding-bottom: 6rem;
}

.home h2 {
    font-family: 'Sacramento';
    font-size: 5rem;
    font-weight: bold;
}
.reply h2 {
    color: var(--salmon);
    font-family: 'Sacramento';
    font-size: 5rem;
    font-weight: bold;
}

.home p {
    font-size: 1.2rem;
    color: #222;
}

.home h3 {
    font-family: 'Sacramento';
    font-size: 3rem;
    font-weight: bold;
}

.reply {
    padding-top: 10rem;
    padding-bottom: 8rem;
}

.reply p {
    font-size: 1rem;
    font-weight: 300;
}

.reply {
background-color: var(--bg);
}

.reply h2 {
    font-size: 4.5rem;
}

.reply p {
    color: white;
}

.reply form label {
    color: white;
}

.reply button {
    background-color: var(--salmon);
    color: white;
    border: 1px solid var(--salmon);
}

.reply button:hover {
    background-color: white;
    color: var(--salmon);
    border: 1px solid white;
}

footer {
    padding: 3.1rem;
    background-color: var(--salmon);
    color: white;
}

footer a {
    color: var(--bg);
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

footer li {
list-style: none;
display: inline;
margin: 0.5rem;
}

.audio-icon-wrapper {
    width: 4rem;
    height: 4rem;
    font-size: 4rem;
    position: fixed;
    bottom: 2.5rem;
    right: 2rem;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    mix-blend-mode: difference;
    animation: rotating 4s linear infinite;
    transform-origin: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
}

@keyframes rotating {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Media Query */

/* laptop */
@media (max-width: 992px) {
    html{
        font-size: 75%;
    }
.simply-countdown>.simply-section{
    padding: 70px;}
}

/* tablet */
@media (max-width: 768px) {
    html{
        font-size: 65%;}
.simply-countdown>.simply-section{
    padding: 60px;
    margin: 5px}
}
.mynavbar .nav-link {
    font-size: 2rem;
    text-align: center;  
}

.sticky-top {
overflow: hidden;
}

/* mobile phone */
@media (max-width: 576px) {
    html{
    font-size: 60%;}
.simply-countdown>.simply-section{
    padding: 45px;
    margin: 3px}
}
