body {
    background-image: url(media/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h2, p {
    margin: 0;
}

h2 {
    font-weight: 500;
}

a {
    color: #000;
    font-weight: 500;
    transition: all 200ms ease-in-out;
}

a:hover {
    color: #2c445f;
    font-size: 15px;
}

main {
    padding: 0 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    background: #fcf7f68a;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(255, 255, 255, 0.43);
    width: 90%;
}

ul {
    padding: 0;
    margin: 0 0 10px 0;
    width: 80%;
    text-align: center;}

li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-style: italic;
    font-size: 14px;
}

form {
    display: flex;
    flex-direction: column;
    margin: 0;
    border-top: 2px solid black;
}

input, label, button {
   margin: 0 auto;
}

label {
    padding: 10px 0 5px 0;
}

input, button {
    padding: 5px;
    border-radius: 2px;
    border: 1px solid #ccc;
    width: 230px;
}

button {
    background-color: #75B5FF;
    color: rgb(12, 12, 12);
    box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    transition: all 200ms ease-in-out;
}

button:hover {
    scale: 1.1;
}

button:active {
    scale: 0.9;
}

footer {
    background-color: white;
    padding: 5px 10px;
    border-radius: 10px;
}

.bold {
    display: inline;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
}

#left-container{
    display: flex;
    flex-direction: column;
    border-right: 2px solid black;
    padding: 10px 20px 10px 10px;
    align-items: center;
    width: 350px;
}

#right-container{
    text-align: center;
    margin: 0 auto;
    width: 700px;
    margin-left: 20px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#right-container>section {
    border: 1px solid black;    
    width: 90%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}
    
#introduction {
    text-align: center;
}

#poem {
    padding: 20px 0;
}
