/* Main */
html{
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin: auto;
    background-color: #121212;
}

p {
    font-family: "poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
    /* margin-left: 15%;
    margin-right: 15%; */
}

/* Header */
header {
    display: flex;
    flex-wrap: nowrap;
    background: linear-gradient(#ffffff, #ffffff);
    padding: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 25px;
    align-items: center;
    justify-content: center;
    color: #000000;
    min-height: 100px;
    /* position: sticky; */
    top: 0;
    z-index: 1;
    box-shadow: 0 20px 20px 10px rgba(0,0,0,0.1);
}

header h1 {
    color: #9171f8;
    font-family: "poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #121212;
    min-height: 800px;
}

h1 {
    font-family: "merel", sans-serif;
    font-weight: 700;
    font-style: normal;
}

h2 {
    color: #ffffff;
}

footer {
    background-color: #1f2c46;
    color: antiquewhite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    font-style: italic;
    color: #555;
    min-height: 40px;
    bottom: 0px;
    /* position: fixed; */
}

footer p {
    color: whitesmoke;
}

iframe {
    stroke: #ffffff;
    stroke-width: 10px;
}

.obj {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.obj p {
    color: #ffffff;
    max-width: 400px;
    min-width: 0;
    min-height: 130px;
}

button {
    background-color: #9171f8;
    color: white;
    font-size: large;
    border-radius: 10px;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border: none;
    transition: all 0.2s ease-in-out;
    font-family: "merel", sans-serif;
    font-weight: 400;
    font-style: normal;
}

button:hover {
    background-color: #9171f89f;
    border-radius: 100px;
    font-size: medium;
}
