/* Styling for smaller text */
#small{
    font-size: 0.8rem
}

/* Styling for sticky (none by default) */
#sticky{
    display: none;
    font-size: 0;
}

/* Styling for nav box (none by default) */
#gold_box_nav{
    width: 75%;
    padding: 1.2rem;
    margin: 0.8rem auto;
    margin-top: 0rem;
    line-height: 1.6rem;
    
    background-color: rgb(252, 252, 244);

    border-style: solid;
    border-width: .12rem;
    border-color: black;
    border-radius: 2rem;
}

.grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
}

/* Styling for navigation buttons */
#nav_buttons{
    height: 100%;
    text-align: right;
    font-size: 0;
}

#nav_button{
    height: 100%;
    padding: 0.5rem;
    align-self: right;
    border-radius: 0;
    border: none;
    border-left: 0.1rem solid rgb(145, 145, 145);
    background-color: rgb(160, 160, 160);
    font-size: 0.9rem;
    color: white;
}

#nav_button:hover{
    border-color: rgb(145, 145, 145);
    background-color: rgb(145, 145, 145);
    color: white;
}

/* Styling for invitation image */
#invitation{
    background-color: transparent;
}

/* Styling for countdown */
#count_cont{
    background-color: transparent;
}

/* Styling for paragraphs */
p{
    background-color: transparent;
    color: black;
}

/* Styling for header photo(s) */
#top_photo{
    display: none;
}

/* Styling for phone background of portrait mode */
#phone_pic{
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Styling for logo */
#logo{
    display: block;
    margin: auto;
    max-width: 55%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.4), transparent, transparent, transparent, transparent);
}

/* Countdown styling */
#countdown{
    color: black;
}

#days_text{
    color: black;
}

/* Nav header styling */
#nav_h{
    font-size: 1.25rem;
    font-weight: bold;
}

/* Styling for container (opague color) of portriat */
#container{
    position: absolute;
    top: 6vh;
    background: linear-gradient(0deg, rgba(189, 223, 227, 1.0) 0%, rgba(189, 223, 227, 0.95) 25%, rgba(189, 223, 227, 0.80) 60%, rgba(189, 223, 227, 0.40) 80%, rgba(189, 223, 227, 0.0) 100%);
    background-attachment: scroll;
    width: 100%;
}

/* Styling for whitespace */
#whitespace{
    display: inline;
    line-height: 12vh;
}

/* Styling for bigger screens */
@media screen and (orientation: landscape){
    /* Styling for sticky header */
    #sticky{
        display: grid;
        grid-template-columns: auto auto;
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #F2F6EB;
    }

    /* Remove styling for the main menue */
    #gold_box_nav{
        display: none;
    }

    /* Remove styling for the white space */
    #whitespace{
        display: none
    }

    #top_photo{
        display: block;
        width: 100%;
        min-width: width;
        margin: 0;
    }

    #phone_pic{
        display: none;
    }

    #container{
        display: inline-block;
        top: 0;
    }

    /* Removes spacing in landscape mode */
    #space{
        height: 0px;
    }

    /* Removes container in landscape mode */
    #container{
        background-color: rgb(189, 223, 227);
    }
    
    /* Remove logo */
    #logo{
        display: none;
    }
}
