@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Global start */
body {
    font-family: Roboto, sans-serif;
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    margin: 0em;
    padding: 0em;
}

img {
    flex: none;
    width: 300px;
    height: auto;
    border-radius: 25%;
    padding: 1em 0;
}

ul {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1em;
}

a {
    text-decoration:  none;
}

button {
    display: inline-block;
    background-color: #3882f6;
    color: #e5e7eb;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    flex: auto;
    width: 120px;
    height: auto;
    padding: 0.25em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

button:hover {
    font-weight: bolder;
}

.header-container,
.row-1-container,
.row-2,
.row-3-container,
.row-4 {
    width: 50em;
    margin-left: 0.5em;
    margin-right: 0.5em;
}
/* Global end */
/* Header start */
.header {
    display: flex;
    justify-content: center;
    background-color: #1f2937;
}

.header-container {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5em;
    flex: none;
}

.header-group {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.header-group span {
        color: #e5e7eb;
        font-size: small;
        align-self:flex-end;
}

.header-right {
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

.header-right a{
    color: #e5e7eb;
}

.header-right a:hover{
    color: #FFFFFF;
}

header {
    font-size: 24px;
    font-weight: 700;
    color: #f9faf8;
    margin-bottom:-.25em;
}

#logo {
    flex: none;
    height: 2em;
    width: 2em;
    border-radius: 50%;
}
/* Header end */
/* Content start */
.content {
    display: flex;
    flex-direction: column;
}
/* Row-1 start */
.row-1 {
    display: flex;
    justify-content: center;
    background-color: #1f2937;
}

.row-1-container {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
}

.row-1-left {
    display: flex;
    flex-direction: column;
    flex: auto;
    flex-wrap: wrap;
}

.row-1-left h1 {
    font-size: 48px;
    font-weight: 900;
    color: #F9FAF8;
    margin: 0;
}

.row-1-left p {
    font-size: 18px;
    color: #e5e7eb;
    margin: 0;
}

.row-1-left button {
    border: 0px solid #e5e7eb;
}

.row-1-right {
    flex: auto;
}
/* Row-1 end */
/* Row-2 start */
.row-2 {
    display: flex;
    flex-direction: column;
    align-self: center;
    margin-bottom: 3em;
}

.row-2 h2 {
    margin-bottom: 0;
    align-self: center;
}

.themes {
    display: flex;
    align-self: center;
    flex: auto;
    gap: 1em;
    font-size: 18px;
    text-align: center;
}

.themes a {
    color: #1f2937;
}

.themes a:hover {
    font-weight: bold;
}

.themes img {
    flex: auto;
}

.theme-1,
.theme-2,
.theme-3,
.themes img {
    max-width: 200px;
}
/* Row-2 end */
/* Row-3 start */
.row-3 {
    display: flex;
    background-color: #e5e7eb;
    justify-content: center;
}

.row-3-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 3em;
}

.row-3-container p {
    text-align: left;
    color: #1F2937;
    font-size: 36px;
    font-weight: light;
    font-style: italic;
    margin: 0 2em;
}

.row-3-container h3 {
    text-align: right;
    color: #1F2937;
    font-size: 24px;
    font-weight: bold;
    margin: 0 4em;
}
/* Row-3 end */
/* Content end */
/* Row-4 start */
.row-4 {
    display: flex;
    align-self: center;
}

.row-4-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3882f6;
    border-radius: 8px;
    padding: 0 2em;
    gap: 2em;
    margin-top: 3em;
    margin-bottom: 3em;
}

.row-4-left {
    align-items: center;
    justify-content: space-between;
    color: #e5e7eb
}

.row-4-left h3 {
    margin-bottom: 0;
}

.row-4-left p {
    margin-top: 0;
}
/* Row-4 end */
/* Footer start */
.footer {
    display: flex;
    background-color: #1f2937;
    justify-content: center;
}

.footer-note {
    justify-content: center;
    color: #e5e7eb;
}
/* Footer end */