@import url('https://fonts.googleapis.com/css2?family=Lato:ital@1&family=Poppins:wght@500&family=Roboto:wght@500;900&family=VT323&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #5A1B87;
}

header a {
    color: white;
    margin-left: 1.5em;
    text-decoration: none;
}

header {
    margin-top: 2.5em;
    display: flex;
    position: relative;
    z-index: 5;
}

.headerLinks {
    margin-left: 40em;
    font-size: 1.2em;
    font-weight: 100;
}

.headerLinks a:hover {
    color: #C824EC;
    transition: 0.5s ease;
}

#headerTitle {
    font-size: 1.5em;
    font-family: 'Poppins', serif;
    margin-left: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#headerTitle img {
    width: 80px;
}

button {
    font-size: 0.8em;
    color: white;
    background-color: #BC3CD8;
    padding: 0.7em;
    border-radius: 5px;
    padding: 50px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

button:hover {
    cursor: pointer;
    background-color: #AC3CF0;
    transition: 0.4s ease;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    color: white;
    font-size: 3em;
    line-height: 2;
    letter-spacing: 3px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    color: white;
    font-size: 2em;
    line-height: 5;
    letter-spacing: 2px;
}

.introduction {
    font-family: 'Orbitron', sans-serif;
    color: white;
    font-size: 3em;
    line-height: 2;
    letter-spacing: 3px;
}

#content {
    margin-top: 10em;
    margin-left: 5em;
}

#title-description {
    color: white;
    font-family: 'Inter', sans-serif;
    letter-spacing: 4px;
    margin-top: 1em;
    line-height: 1.5em;
}

#explore-platform {
    margin-top: 3em;
    margin-left: 15%;
    font-size: 1em;
    color: white;
    background-color: #BC3CD8;
    padding: 0.7em;
    border-radius: 5px;
    width: 8em;
    font-weight: 600;
}

#explore-platform:hover {
    cursor: pointer;
    background-color: #AC3CF0;
    transition: 0.4s ease;
}

#online {
    display: flex;
    margin-top: 2em;
}

#signUp-description {
    color: white;
    float: right;
    margin-top: 1.5em;
    font-family: 'Inter', sans-serif;
    letter-spacing: 4px;
}

button img {
    width: 50px;
}

@media only screen and (max-width:500px) {
    body {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    h1 {
        font-family: 'Orbitron', sans-serif;
        color: white;
        font-size: 1.5em;
        line-height: 1.2;
        letter-spacing: 2px;
    }
    #title-description {
        color: white;
        font-family: 'Inter', sans-serif;
        letter-spacing: 2px;
        margin-top: 1em;
        line-height: 1.5em;
    }
    h2 {
        font-family: 'Orbitron', sans-serif;
        color: white;
        font-size: 1.3em;
        line-height: 1.5;
        letter-spacing: 2px;
    }
}