
@import 'colors.css';

body {
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--background-color);
}

.container {
    text-align: center;
    background-color: var(--background-color);
    padding: 25px;
    width: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.social-link {
    color: var(--primary-color);
}

.btn {
    background-color: rgba(0, 0, 0, 0);
    color: var(--primary-color);
    font-weight: 600; /* semi-bold */
}

.social-link a {
    margin: 0 10px;
    text-decoration: none;
    color: var(--primary-color);
}

.social-link:hover {
    text-decoration: none;
    color: var(--primary-color);
}

main h1 {
    color: var(--secondary-color);
}

main p {
    color: var(--paragraph-color);
}

footer p {
    font-size: 0.9em;
    font-weight: lighter;
    color: var(--secondary-color);
}

footer a {
    text-decoration: none;
    font-weight: bold;
    color: var(--secondary-color);
}

footer a:hover {
    text-decoration: underline;
}

#inputEmailContainer {
    background-color: rgb(226, 217, 200) !important;
    border: 0;
    border-radius: 25px !important;
    color: var(--secondary-color) !important;
}

#inputEmail {
    background-color: rgba(0, 0, 0, 0) !important;
    border: 0;
}

#inputEmail::placeholder {
    color: var(--secondary-color) !important;
    opacity: 0.4;
}