@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin : 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;   
}

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    height: 100%;   
    display: flex;
    flex-direction: column;
}

a{
    text-decoration: none;
    color: inherit;
}

.menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex: 0 0 60px;
    background: #161e32;
}

.menu .logo-adventure{
    display: flex;
    justify-content: center;

    height: 50px;
    width: 50px;

    margin-left: 20px;
}

.menu .logo-taylor{
    display: flex;
    justify-content: center;
}

.menu .account{
    display: flex;
    justify-content: center;
    background: #971d35;
    border-radius: 3px;

    padding: 8px 20px;
    margin-right: 20px;
    
}

.menu .account:hover{
    background: #58111f;
    cursor: pointer;
}

.menu .login{
    display: flex;
    flex-direction: row;
}

.nav-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 0 0 60px;
    background: #1b253d;
}

.nav-menu ul{
    list-style: none;
    display: flex;
    flex-direction: row;
}

.nav-menu ul li{
    margin: 0px 20px;

    border-bottom: 2px solid transparent;
}

.nav-menu ul li:hover{
    border-bottom: 2px solid #971d35;
}

.content{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #212d4b;
}

.title{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    font-size: 1.3rem;
}

.spacer{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.spacer div{
    border-bottom: 2px solid white;
    width: 20%;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 50px;
    width: 100%;
    background: #0f1627;

    font-size: 0.9rem;
}

.footer span{
    max-width: 80%;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .nav-menu ul{
        flex-direction: column;
    }
    
    .nav-menu ul li{
        text-align: center;
        padding: 15px 0px;
    }
}