@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Nunito&family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
    --black:rgb(20 20 20);
    --red:#e50914;
    --white:#fff;
    --font:'Roboto', sans-serif;
}

*{
    background-color: var(--black);
    font-family: var(--font);
    box-sizing: border-box;
}
.shadow{
    box-shadow: 5px 5px 8px 0 grey;
}
h1,h2,h3,h4,h5,h6{
    color: var(--white);
}
.small-square-size{
        width: 2.5rem;
        height: 2.5rem;
}
.medium-square-size{
    width: 5rem;
    height: 5rem;
}
.large-square-size{
    width: 10rem;
    height: 10rem;
}

.rounded-image{
    border-radius: 50%;
    margin-top: 5rem;
}

.flex-container{
    display: flex;
    justify-content: space-between;
    
}

.nav-docs{
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.nav-title{
    display: inline-block;
    margin: 0;
    color: var(--red);
    font-size: 3rem;
    font-weight: 600;
}
.nav-title-short{
    color: var(--white);
    font-size: 2rem;
}
.main-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
}

a{
    text-decoration: none;
    color: var(--white);
}
a:visited{
    color: var(--white);
}
.buttons{
    display: flex;
    justify-content: center;
}
.btn{ 
    border: none;
    border-radius: 0.3rem;
    padding: 0.5rem 1rem;
    margin: 2rem 0rem 1rem 1rem;
    cursor: pointer;
}
.btn-primary{
    background-color: var(--red);
    color: var(--white);
}
.btn-secondary{
    background-color: var(--white);
    color: var(--black) ;
    outline: 0.1rem solid var(--black);
}
.btn-secondary:visited{
    background-color: var(--white);
    color: var(--black) ;
    outline: 0.1rem solid var(--black);
}
/* #btnSecondary{
    color: var(--black);
} */