@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka&display=swap');

body {
    font-family: 'Lilita One', cursive;
    margin: 0;
    padding: 0;
}

html {
    background-color: #202020;
}


.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
}

/* Make the menu show in a column for phones */
@media (max-width: 600px) {
    .main-content {
        flex-direction: column;
    }
}

.main-content img {
    max-width: 50%;
    height: auto;
}

.main-content .links-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-content ul li a{
    text-decoration: none;
    color: white;
    font-size: 5rem;
}

.wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#heading {
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
}

.text-block {
    width: 50%;
}

.text-block p {
    color: white;
    font-family: 'Fredoka', sans-serif;
    line-height: 2;
    font-size: 18px;
    text-align: left;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 50px auto;
    gap: 40px;
}

.section p {
    max-width: 500px;
    color: white;
    font-family: 'Fredoka', sans-serif;
    line-height: 2;
    font-size: 18px;
    text-align: left;
    background-color: #3A8AE1;
    padding: 10px;
    border-radius: 10px;
}

.section.reverse {
    flex-direction: row-reverse;
}

.section.reverse p {
    background-color: #FC293C;
}

.section img {
    width: 40%;
    border-radius: 10px;
}