* {
    box-sizing: border-box;
    font-family: sans-serif;
}

html, body {
    background-color: black;
}

.factMenu {
    background-color: black; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 64px;
    justify-content: center;  
}

.factMenu nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.factMenu img {
    height: 200px;
}

.factMenu ul {
    display: flex;
    gap: 32px;
    padding: 0;
    margin: 0;
    list-style: none;

}

.factMenu a {
    white-space: nowrap;
    text-decoration: none;
    color: #ffde59;
    font-weight: bold;
    transition: color #8c52ff;
}

.factMenu ul:hover a {
    color: #8c52ff;
}

.factMenu ul:active a {
    color: #2a086e;
}

.fa ul:hover a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: lime;
    text-underline-offset: 5px;
    text-decoration-thickness: 5px;
}


div {
    color: #ffde59;
    font-size: 15pt;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 300px;
}

input {
    background-color: #ffde59;
    font-size: larger;
    padding: 8px;
    border-radius: 15px;
    border: none;
}

button {
    font-size: larger;
    background-color: #8c52ff;
    border-radius: 15px;
    padding: 8px
}

button:hover {
    color: white;
}

button:active {
    color: blue;
}
