* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: black;
}

.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    margin-top: 5vh;
}

.spacer {
    flex: 1;
}

.content {
    flex: 2;
    background: #edcccc;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px 5px rgba(255, 0, 216, 0.8);
    border-radius: 1em;
}

.row {
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.gen_text {
    font-size: 1.2em;
}

a, a:visited {
    text-decoration: underline;
    color: rgba(255, 0, 216);
}

.img_logo {
    width: 5em;
}

.img_banner {
    width: 17em;
    border-radius: 1em;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .spacer {
        display: none;
    }

    .content {
        width: 100%;
    }
}