@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Serif+Ethiopic:wght@100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Serif+Ethiopic:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --dark-blue: #020a0d;
    --navy-blue: #1a2336;
    --light-blue: #3c4b6b;
    --dark-gold: #8d683b;
    --light-gold: #c0ac8b;
    --white: #ffffff;
}

body{
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)), url('../images/law01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Playfair', serif;
    margin: 0;
}

p{
    font-family: 'Noto Serif Ethiopic', serif;
    margin: 0;
}

.left{
    height: 100vh;
    width: 500px;
    background-color: var(--navy-blue);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-right: 5px solid var(--dark-gold);
}

.left-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.left-content img{
    width: 450px;
}

.right .right-content h1{
    font-size: 48px;
    color: var(--dark-blue);
    text-align: center;
}