body {
    padding: 0;
    margin: 0;
    background-color: whitesmoke;
    font-family: 'Roboto', sans-serif;
}

main {
  position: relative;

}

.gradient {
    width: auto;
    height: 400px;
    background: linear-gradient(to right, #ee0979, #ff6a00);
    background-size: auto auto;
}

.dot {
    width: auto;
    height: 400px;
    margin: 0px 30px 0px 30px;
    background-image: radial-gradient(rgb(255, 255, 255) 2px, transparent 2px);
    background-size: 30px 30px;
}

.container {
    border: red solid 1px;
    position: absolute;
    top: 100px;
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
    min-width: 300px;
    max-width: 500px;
    min-height: 500px;
    max-height: auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2)
}

.headline {
    margin-top: 15px;
    margin-left: 30px;
    font-size: 75px;
    font-weight: 900;
    color: rgba(128, 128, 128, 0.200);
}

.faq-container {
    margin: 0px 20px 20px 20px;
}

.faq-title {
    font-size: 16px;
    font-weight: 900;
}

.faq-text {
    margin-top: 20px;
    margin-right: 20px;
    font-size: 16px;
    color: rgb(146, 146, 146);
    display: none;
}

.faq{
    border: gray 1px solid;
    border-radius: 10px;
    margin: 10px 0px 10px 0px;
    padding: 10px 20px 10px 20px;
    position: relative;
    transition: 0.3s ease;
}

.faq.active {
    transition: 0.3s ease;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    background-color: blueviolet;
    color: white;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
}

.faq-toggle:focus {
    outline: none;
}

.faq-toggle .fa-minus {
    display: none;
}

.faq.active .faq-toggle .fa-minus {
    display: block;
}

.faq.active .faq-toggle .fa-plus {
    display: none;
}

.faq.active .faq-toggle {
    background-color: black;
    color: white;
}

.footer-text {
    position: absolute;
    border: #ff007b 2px dotted;
    width: 160px;
    padding: 10px;
    top: 410px;
    font-size: 16px;
    left: 40px;
    right: 0;
    text-align: center;
    color: #ff007b;
    z-index: -1;
}