@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
  background-image: url(../madlibbg.png);
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;

}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1200px;
    height: 800px;
}

.container > h1 {
    font-size: 120px;
    color: rgb(255, 255, 255);
    text-shadow: rgb(50, 50, 50) 3px 5px 2px;
}

.landing-page {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 20px;
}

.landing-page p {
    font-size: 25px;
    color: rgb(255, 255, 255);
    text-shadow: rgb(50, 50, 50) 3px 5px 2px;
    margin: 30px;
}

.topic-options {
    display: flex;
}

.landing-page h2 {
    font-size: 40px;
    color: rgb(255, 255, 255);
    text-shadow: rgb(50, 50, 50) 3px 5px 2px;
    border-bottom: 2px solid rgb(204, 187, 0);
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: 500px;
    margin-top: 40px;
}

.landing-page button {
    padding: 5px;
    width: 300px;
    font-size: 20px;
    border-radius: 20px;
    margin: 10px;
    background-color: rgb(65, 173, 220);
    cursor: pointer;
    border: none;
}

.landing-page button:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(181, 181, 1);
    border: none;
}


h3 {
    font-size: 25px;
    color: rgb(231, 231, 231);
    text-shadow: rgb(50, 50, 50) 3px 5px 2px;
}

.isekai-container, .love-container, .character-container {
    text-align: center;
    width: 1000px;
}

.inputs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}   

.form-group {
    display: flex;
    flex-direction: column-reverse;
    width: 150px;
    text-align: center;
    margin: 10px;
    font-size: 20px;
    width: 200px;
    color: rgb(255, 255, 255);
    text-shadow: rgb(50, 50, 50) 3px 5px 2px;
}

.form-group input {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    border: none;
    background-color: transparent;  
    outline: none;
    border-bottom: 2px solid rgb(255, 166, 0);
    color: rgb(255, 255, 255);
}

.isekai-container h1, .love-container h1, .character-container h1 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    text-shadow: rgb(50, 50, 50) 3px 5px 2px;
    margin: 10px;
}

.back, .generateButton, .copyButton {
    font-size: 17px;
    border: none;
    background-color: rgba(234, 246, 2, 0.594);
    color: rgb(1, 1, 1);
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
    margin-top: 40px;
}

.result-container {
    font-size: 25px;
    color: rgb(255, 255, 255);
    text-shadow: rgb(50, 50, 50) 3px 5px 2px; 
    text-align: center;
    margin-top: 100px;
}