* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
}

:root {
    --dark-blue: #333446;
    --blue: #7f8caa;
    --light-blue: #b8cfce;
    --grey: #eaefef;
}

.navbar {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--blue);
}

.col-header {
    background-color: var(--blue);
}

body {
    background-color: beige;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0px;
}

.card {
    position: relative;
    width: 425px;
    height: 325px;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 12px #ccc;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--blue);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    height: 80px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.overlay h3 {
    font-size: 30px;
    margin: 0;
    line-height: 1;
    font-weight: normal;
}

.overlay p {
    margin: 10px 0px;
}

:root {
    --dark-blue: #333446;
    --blue: #7f8caa;
    --light-blue: #b8cfce;
    --grey: #eaefef;
}

body {
    margin: 0;
    background-color: var(--grey);
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    background-color: var(--blue);
    flex-direction: column;
    align-items: center;
    width: 220px;
    height: 100%;
    padding: 10px;
    /* padding-top: 30px; */
    /* padding-bottom: 30px; */
    box-sizing: border-box;
}

.flyRight {
    width: 120px;
    margin-bottom: 30px;
}

.navbar {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    overflow: hidden;
    background-color: var(--blue);
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    background-color: var(--blue);
    transition: background 0.2s;
    font-size: 18px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.navbar a:hover {
    background-color: var(--light-blue);
    color: #222;
}

main {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
    gap: 20px;
}
