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

h1 {
    font-size: 3rem;
    color: grey;
    text-align: center;
}

.slash {
    padding: 0.5rem 1rem 0.1rem;
    color: black;
    background-color: white;
    border-radius: 10px;
    box-sizing: border-box;
    margin-right: 1rem;
}

.subtitle {
    text-align: center;
    font-size: 1.5rem;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0.5rem;
    background-color: #f0f0f0;
    color: black;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    font-size: .85rem;
    border: solid 1px black;
}
.button:visited {
    color: black;
}
.button:hover {
    background-color: #d0d0d0;
}

.button:active {
    background-color: #c2c2c2;
}

.container {
    width: 95%;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(-65%);
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}

body {
    font-family: Helvetica, sans-serif;
    background-color: #ececec;
}

.loginButton {
    font-size: 1.2rem;
    padding: 1rem 1rem;
    margin-top: 2rem;
    background-color: white;
}

.homeText {
    display: none;
}
@media screen and (max-width: 400px) {
    .homeText {
        display: inline;
    }
    .homeTextLong {
        display: none;
    }
}
