@import url("https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap");

:root {
    --color-1: #f1faee;
    --color-2: #a8dadc;
    --color-3: #457b9d;
    --color-4: #1d3557;
    --color-5: #e63946;
}

* {
    box-sizing: border-box;
    font-family: 'Balsamiq Sans', cursive;    
    padding: 0;
}

body {
    background-image: url('../images/rikaBackground.jpg');
    background-repeat: none;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.container {
    position: relative;
    background-color: var(--color-1);
    width: 600px;
    box-shadow: 30px 0px 40px rgba(0,0,0,0.4), -30px 0px 40px rgba(0,0,0,0.4);
    min-height: 100vh;
}

img.background {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 300px;
    height: auto;
}

nav {
    background-color: var(--color-4);
    position: sticky;
    top: 0;
    width: 100%;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

nav .option {
    font-size: 1.7em;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 1000;
    
    color: var(--color-1);
    text-decoration: none;
    opacity: 0.8;
}

nav .option.active {
    opacity: 1;
    text-decoration: underline;
}

nav img {
    position: absolute;
    left: 0;
}

.list a {
    text-decoration: none;
}

.list a:visited {
    color: var(--color-4);
}

.welcome-message {
    position: relative;
    height: 125px;
    width: 75%;
    left: 12.5%;
    text-align: center;
    color: var(--color-1);
    background: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    border-radius: 6px;
    padding: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.list.outerBox {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 8px;
    width: 75%;
    height: 275px;
    background: var(--color-1);
}

.list .innerBox {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: absolute;
    right: 0;
    border-radius: 8px;
    background-image: url('../images/nipah2.png');
    background-size: cover;
    height: 300px;
    width: 100%;
}

.list .innerBox .lowerBar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: var(--color-4);
    color: var(--color-1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

@media(max-width: 1000px) {
    .list.outerBox {
        width: 95%;
    }
    img.background {
        opacity: 0%;
    }
}