body{
    margin: 0px;
    font-family: "Roboto", sans-serif;
}

.header {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: #1F2937;
}

.header ul{
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.header ul a{
    text-decoration: none;
    color: white;
}

.hero {
    background-color: #1F2937;
    padding: 20px;
    padding-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.hero img {
    max-width: 500px;
    min-width: 300px;
    flex-shrink: 1;
}

.hero .left {
    color: white;
    width: 500px;
}

.hero .left h1{
    margin-top: 0px;
    font-size: 3em;
}

.hero .left button{
    text-decoration: none;
    border: none;
    padding: 10px;
    font-size: 1.2em;
    background-color: #3882F6;
    color: white;
    border-radius: 4px;
}

.yonkos {
    margin-top: 50px;
    text-align: center;
}

.yonkos h1 {
    margin-bottom: 50px;
}

.yonkos .emperors {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.yonkos .emperors .card {
    display: flex;
    flex-direction: column;
    width: 200px;
    
}

.yonkos .emperors .card img {
    border: 5px solid #3882F6;
    border-radius: 10px;
}

.quote {
    margin-top: 50px;
    background-color: #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    gap: 10px;
}

.quote p {
    font-size: 36px;
    font-weight: 100;
    font-style: italic;
    color: #1F2937;
    max-width: 800px;
}

.quote .author{
    max-width: 800px;
    text-align: right;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    margin-top: 0;
}

.call-to-action {
    margin-top: 50px;
    margin-bottom: 50px;
}

.call-to-action .card{
    margin: 0px auto;
    max-width: 800px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #3882F6;
    border-radius: 10px;
    color: white;
    padding: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.call-to-action .card button {
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color: #3882F6;
    padding: 10px;
}

.footer {
    background-color: #1F2937;
    padding: 10px;
    text-align: center;
    color: white;
}

.footer a{
    text-decoration: underline;
    color: white;
}