/* every page */
*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}
.home-page{
    position: relative;
    height: 100vh;
    width: 100%;
}
/* navbar */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5d4954;
    color: white;
    position:fixed;
    top: 0;
    width: 100%;
}
.brand-title{
    font-size: 2.8rem;
    letter-spacing: 5px;
    margin: .5rem;
    font-weight: 700;
}
.brand-title a{
    text-decoration: none;
    color: white;
}
.brand-title:hover{
    background-color: #8a8a8a;
    
}
.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
}
.navbar-links li{
    list-style: none;
}
.navbar-links li a{
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    padding: 1rem;
    display: block;
}
.navbar-links li:hover{
    background-color: #8a8a8a;
}
.toggle-button{
    position: absolute;
    top: 1.2rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 21px;
}
.toggle-button .bar{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}
/* mobile responsive */
@media (max-width: 700px) {
    .toggle-button{
        display: flex;
    }

    .navbar-links{
        display: none;
        width: 100%;
    }
    .navbar{
        flex-direction: column;
        align-items: flex-start;

    }
    .navbar-links ul{
        width: 100%;
        flex-direction: column;
    }
    .navbar-links li{
        text-align: center;
    }
    .navbar-links.active{
        display: flex;
    }
}
/* content for page */
.hero{
    background: url('./bwpic.jpg');
    z-index: -1;
    position: fixed;
    top: 63px;
    width: 100%;
    height: 680px;          
    opacity: .8;
    border-bottom: 1px solid black;
}
.content{
    position: fixed;
    width: 100%;    
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.content p{
    font-size: 60px;
    font-weight: bolder;
    text-shadow: 3px 3px 20px #ff99cc,
    -2px 1px 30px #ff99cc;
}
@media screen and (max-width:940px){
    .content p{
        padding: .3rem;
        margin: .3rem;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}
/* my footer */
footer{
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5d4954;
    position: fixed;
    width: 100%;
    bottom: 0;
}
footer p{
    color: rgb(226,226,226);
    letter-spacing: 2px;;
}
