@import url('https://fonts.googleapis.com');


/* 
    Color Palette:
    Primary - #ff5d5d
    Page Background - #0d1b2a 
    Card Background - #1b263b 
    Secondary - #415a77 
    Text - #e0e1dd  
*/

body{
    font-family: 'Montserrat',sans-serif;
    background-color: #0d1b2a;
    color: #e0e1dd;
    margin: 20px 60px;
}


a{
    text-decoration: none;
    color: inherit; 
}

a:hover{
    text-decoration: underline;
    /* background-color: #415a77; */
}

.container{
    display: flex;
    align-items: center;
    gap: 50px;
}

.card{
    background-color: #1b263b ;
    border-radius: 20px;
    padding: 10px 25px;
    margin: 16px 0px;
}

nav.card, nav ul, nav span{
    border-radius: 32px;
    background-color: #ff5d5d;
    color: #f0f0f0;
    padding: 0px;
    list-style-type: none;
    display: flex;
    font-size: 20px;
    /* justify-content: center; */
    text-align: center;
    position: sticky;
    top: 20px;
    z-index: 1000;
}

img.circle{
    border-color: #415a77;
    border-style: solid;
    border-width: 5px;
    border-radius: 1000px;
}

nav li{
    
    display: block;
    padding: 0px 20px;
    /* background-color: #415a77; */
    
}

h1{
    font-size: 48px;
}

h2{
    font-size: 32px;
}

p.bigger{
    font-size: 20px;
}

.muted{
    color: #415a77;
}

span{
    color: #ff5d5d;
}

a.button{
    background-color: #415a77;
    color: #e0e1dd;
    border-radius: 32px;
    font-size: 32px;
    padding: 2px 30px;
}

a.button:hover{
    background-color: #ff5d5d;
    text-decoration: none;
}

.buttons{
    display: flex;
    align-content: center;
    gap: 20px;
}