/* Brand Colors:

- Pink: #ff6fff
- Navy: #191970
- Indigo: #32174d
- Electric Green: #ccff00*/

/* Brand Font:

font-family: 'Roboto Condensed', sans-serif;

*/

html {
    box-sizing: border-box;
    font-size: 16px;
}

body {
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    color: white;
    height: 100%;
    background-color: black;
    background: url('background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    box-sizing: border-box;
}

.linkBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75vh;
    margin: 0rem;
    padding: 0rem;
}

.socialLinks {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: black;
    text-decoration: none;  
}

button, button:visited {
    font-size: 1.2rem;
    padding: 0.3rem;
    margin: 0.6rem;
    text-decoration: none;
    color: black;
    width: 15rem;
    font-family: 'Oswald', sans-serif;
    background-color: #ccff00;
    border: none;
    box-shadow: 4px 4px #191970;
}

h1 {
    font-size: 1.7rem;
    text-decoration: none;
    color: #F1E62E;
    padding: 0;
    margin: 0.5rem;
}

button:hover {
    background-color: #ff6fff;
    box-shadow: 4px 4px #32174d;
    transition: 0.5s;
    cursor: pointer;
}

#logo {
    max-width: 28%;
    border-radius: 50%;
}
